Manage Users
Register users on your Foswiki site; change/reset/install passwords; remove user accountsOn this page:
Authentication and Access Control
- UserAuthentication describes your options for user authentication
- AccessControl describes how to define groups and how to restrict access to content
Register User
You don't have to have user home pages in Foswiki for Authentication to work - see UserAuthentication for details.- UserRegistration is used when you want new users to individually register with Foswiki by filling out a form
- You can create a custom versions of NewUserTemplate and UserForm
- BulkRegistration is used by administrators to register multiple users at the same time
Change, Reset and Install Passwords
Note that the below features are only relevant when you use an internal password manager where Foswiki can set and reset passwords.- ChangePassword is for users who can remember their password and want to change it
- ResetPassword is for users who cannot remember their password; a system generated password is e-mailed to them
- BulkResetPassword if for administrators who want to reset many passwords at once
- ChangeEmailAddress changes the hidden email address stored in the password file
Changing User Account Names
To change the user's WikiName:- Rename the user's Foswiki homepage in the Main web, such as from
JaneSmithtoJaneMiller.- Fix backlinks in the Main web only
- Make sure the group topics are updated (if any.)
- Edit the Main.WikiUsers? topic and move the user's entry so that the list is in proper alphabetical order.
- Recreate the old topic with a pointer to the new topic, so that links in other webs work properly. Example content:
%M% Jane Smith is now known as JaneMiller
- The login name needs to be changed in the authentication server (e.g. Active Directory)
- In Foswiki's Main.WikiUsers? topic, fix the mapping from login name to WikiName:
* JaneSmith - jsmith - 13 Sep 2006
to:
* JaneMiller - jmiller - 13 Sep 2006
Removing User Accounts
To remove a user account (FredQuimby, who logs in as "fred"):- If you are using a
.htpasswdfile, edit the.htpasswdfile to delete the line startingfred:- Warning: Do not use the Apache
htpasswdprogram with.htpasswdfiles generated by Foswiki!htpasswdwipes out email addresses that Foswiki plants in the info fields of this file.
- Warning: Do not use the Apache
- Remove the
FredQuimby - fredline from the Main.WikiUsers topic - Remove
FredQuimbyfrom all groups and from all theALLOWWEB/ALLOWTOPIC...declarations, if any.
Note: If you fail to do this you risk creating a security hole, as the next user to register with the wikiname FredQuimby will inherit the old FredQuimby's permissions. - [optional] Delete their user topic Main.FredQuimby (including attachments, if any.)
Customizing registration Emails.
Foswiki's Registration can send 3 emails who's output is governed by templates:- User registration confirmation -
templates/registerconfirm.tmpl - User registration notification -
templates/registernotify.tmpl - Email to notify the Wiki admin of registration -
templates/registernotifyadmin.tmpl
templates dir, this cannot use Template topics.
These template files have a specific format that matches the raw format of emails sent via SMTP,
so be careful and test your changes. It is easiest to start by copying the default templates:
cd templates cp registernotify.tmpl registernotify.myskin.tmpl cp registerconfirm.tmpl registerconfirm.myskin.tmpl cp registernotifyadmin.tmpl registernotifyadmin.myskin.tmplthen add
myskin to the beginning of the SKIN setting in SitePreferences.
From this point on, your myskin templates will be used for the registration emails.
To make it possible for WikiUsers? to modify the email contents, you could use a parameterized %INCLUDE%
statement in your customized version. eg:
From: %WIKIWEBMASTERNAME% <%WIKIWEBMASTER%>
To: %FIRSTLASTNAME% <%EMAILADDRESS%>
Subject: %MAKETEXT{"[_1] - Registration for [_2] ([_3])" args="%WIKITOOLNAME%, %WIKINAME%, %EMAILADDRESS%"}%
MIME-Version: 1.0
Content-Type: text/plain; charset=%CHARSET%
Content-Transfer-Encoding: 8bit
%INCLUDE{
"Main.RegistrationNotification"
WIKINAME="%WIKINAME%"
FIRSTLASTNAME="%FIRSTLASTNAME%"
EMAILADDRESS="%EMAILADDRESS%"
}%
- note the use of %WIKINAME%, %FIRSTLASTNAME%, %EMAILADDRESS% passed in from the INCLUDE so that the topic below is similar to the original template
Welcome to %WIKITOOLNAME%.
%MAKETEXT{"Your personal [_1] topic is located at [_2]. You can customize it as you like:" args="%WIKITOOLNAME%, %SCRIPTURL{"view"}%/%USERSWEB%/%WIKINAME%"}%
* %MAKETEXT{"Some people turn it into a personal portal with favorite links, what they work on, what help they'd like, etc."}%
* %MAKETEXT{"Some add schedule information and vacation notice."}%
Regards
%WIKIWEBMASTERNAME%
Your Wiki Admin
%MAKETEXT{"Note:"}%
2 %MAKETEXT{"You can change your password at via [_1]" args="%SCRIPTURL{"view"}%/%SYSTEMWEB%/ChangePassword"}%
3 %MAKETEXT{"If you haven't set a password yet or you want to reset it, go to: [_1]" args="%SCRIPTURL{"view"}%/%SYSTEMWEB%/ResetPassword"}%
%MAKETEXT{"Submitted content:"}%
%FORMDATA%
- remember to secure the topic appropriately to prevent attackers from getting emailed sensitive passwords.
Related Topics: AdminDocumentationCategory