Your message dated Mon, 06 Nov 2006 10:32:55 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#313431: fixed in dokuwiki 0.0.20060309e-2
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: dokuwiki
Version: 0.0.20050218-6
Severity: wishlist

Hi,

Thanks for packaging dokuwiki for Debian.

Currently your /usr/share/doc/dokuwiki/README points the reader
towards the online (unfortunately non-free) documentation provided by
upstream.  I believe it would be much useful to have at that place the
documentation relevant to the packaged version as upstream documents
only the latest development version.  It is hard to determine what is
relevant only to it or to the packaged version (which obviously has
less features).  This will be particularly relevant once your package
will be in a stable release: it will not follow upstream developments
any more.

As an example, you will find as an attachment a few tips I have found
useful for beginners like me and may be also relevant for others.

Best regards,
Frederic Lehobey

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: sparc (sparc64)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.4.27-2-sparc64
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages dokuwiki depends on:
ii  debconf                      1.4.51      Debian configuration management sy
ii  php4                         4:4.3.10-15 server-side, HTML-embedded scripti
ii  ucf                          1.18        Update Configuration File: preserv

-- debconf information:
  dokuwiki/system/localnet: 10.0.0.0/24
* dokuwiki/system/documentroot: /dokuwiki
* dokuwiki/system/accessible: global
  dokuwiki/webservers: apache
* dokuwiki/system/purgepages: true
2005-06-13

This file provides a few tips for using dokuwiki as packaged by
Debian (first written for dokuwiki 2005-02-18a).

Q: How to handle a local configuration file?
A: Create a file /etc/dokuwiki/local.php where you put all your
preferred values for the configuration variables like:

<?
$conf['superuser'] = '@admin';
?>

(this gives to the 'admin' group the dokuwiki superuser power).  Do
not leave any empty line at the end of this file.

Q: How can I select my language for dokuwiki?
A: Put your language in 'lang' variable like with adding the following
line to /etc/dokuwiki/local.php:

$conf['lang'] = 'fr';

(available languages may by found in /usr/share/dokuwiki/lang).

Q: How to enable ACL?
A: For the 'plain' authentication type, chosen by the (default)

$conf['authtype'] = 'plain';

variable, ACL is enabled by the

$conf['useacl'] = 1;

variable.

This authentication is ruled by the /etc/dokuwiki/acl.auth, and
/etc/dokuwiki/users.auth files.  You have templates of them in
/etc/dokuwiki/ with a .dist suffix appended.

Notice, that if you want to allow users to register themselves, as

$conf['openregister']= 1;

is enabled by default you must have /etc/dokuwiki/users.auth writable
by the web server.  If you are using apache or apache2 with Debian a

# chown www-data /etc/dokuwiki/users.auth

should do the trick.

Notice also clear text emails are sent by dokuwiki containing the
password (used in clear text later anyways).  The dokuwiki email
sender is (optionally) set by the

$conf['mailfrom'] = '[EMAIL PROTECTED]';

variable (empty default).  Remember that on a standard Debian
installation, exim4 requires rewriting of the email sender through the
/etc/email-addresses mechanism which would allow dokuwiki issued mail
to go outside only with some

www-data: [EMAIL PROTECTED]

entry in /etc/email-addresses system configuration file.

Finally notice that the (editable) /etc/dokuwiki.users text file
expects fields in the following order:

user:MD5password:Real Name:[EMAIL PROTECTED]:groups,comma,separated

groups being listed _without_ the usual leading '@' for groups.

The default group for new users is chosen by

$conf['defaultgroup']= 'user';

The 'md5sum.textutils --string=password' command (from coreutils
package) may be useful.

Q: What do I have to save when moving (or backuping) dokuwiki
somewhere else?
A: According to the online documentation the files (or directories) to
be saved are:

  /var/lib/dokuwiki/attic/, /var/lib/dokuwiki/changes.log,
  /var/lib/dokuwiki/data, /var/lib/dokuwiki/media, and (if any)
  /etc/dokuwiki/local.php

and, for ACL, /etc/dokuwiki/acl.auth and /etc/dokuwiki/users.auth
should also be preserved.

In case of inconsistencies, .cache directories in data and media, may
have to be cleared (maybe also your browser ones).

--- End Message ---
--- Begin Message ---
Source: dokuwiki
Source-Version: 0.0.20060309e-2

We believe that the bug you reported is fixed in the latest version of
dokuwiki, which is due to be installed in the Debian FTP archive:

dokuwiki_0.0.20060309e-2.diff.gz
  to pool/main/d/dokuwiki/dokuwiki_0.0.20060309e-2.diff.gz
dokuwiki_0.0.20060309e-2.dsc
  to pool/main/d/dokuwiki/dokuwiki_0.0.20060309e-2.dsc
dokuwiki_0.0.20060309e-2_all.deb
  to pool/main/d/dokuwiki/dokuwiki_0.0.20060309e-2_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Mohammed Adnène Trojette <[EMAIL PROTECTED]> (supplier of updated dokuwiki 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Mon,  6 Nov 2006 19:14:03 +0100
Source: dokuwiki
Binary: dokuwiki
Architecture: source all
Version: 0.0.20060309e-2
Distribution: unstable
Urgency: low
Maintainer: Mohammed Adnène Trojette <[EMAIL PROTECTED]>
Changed-By: Mohammed Adnène Trojette <[EMAIL PROTECTED]>
Description: 
 dokuwiki   - a standards compliant simple to use wiki
Closes: 313431 345104
Changes: 
 dokuwiki (0.0.20060309e-2) unstable; urgency=low
 .
   * Fix debian/watch thanks to . (Closes: #345104)
   * Add Debian specific documentation provided by Frédéric Lehobey in
     README.Debian. (Closes: #313431)
Files: 
 389904d44d3e8e9342b4978791812f93 650 web optional dokuwiki_0.0.20060309e-2.dsc
 2994499ac1065f1bf54844edbe81c14d 25510 web optional 
dokuwiki_0.0.20060309e-2.diff.gz
 1e9c85132a8e1a94cd7c4485e104af7d 876214 web optional 
dokuwiki_0.0.20060309e-2_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (GNU/Linux)

iD8DBQFFT3z3OU3FkQ7XBOoRAu0QAKDTpoy1lkrrzKw9++hKupAoYgxTngCgjyk7
aEDlsE2xhyvZ0cbdGAz9GdA=
=VzwQ
-----END PGP SIGNATURE-----


--- End Message ---

Reply via email to