<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.umiacs.umd.edu/umiacs/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Xhe</id>
	<title>UMIACS - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.umiacs.umd.edu/umiacs/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Xhe"/>
	<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php/Special:Contributions/Xhe"/>
	<updated>2026-05-29T20:31:27Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.7</generator>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3273</id>
		<title>SecureShell</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3273"/>
		<updated>2010-05-05T15:04:08Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Passwordless SSH with SSH Keys */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Secure Shell (or [http://en.wikipedia.org/wiki/Secure_Shell SSH]) is a network protocol allowing two computers to exchange data securely over an insecure network.  By default use of SSH brings the user to a terminal, but the protocol can be used for other types of data transfer such as [[SFTP]] and [[SCP]].&lt;br /&gt;
&lt;br /&gt;
==Connecting to an SSH Server==&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]].&lt;br /&gt;
 # ssh bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
This will give you access to a terminal on any one of the [[OpenLAB]] servers.  Note that by default you will not have access to applications that require X11 to run.&lt;br /&gt;
&lt;br /&gt;
On Windows XP or Vista hosts there are no SFTP clients installed by default.  Users can install either which will enable SSH and SFTP access.&lt;br /&gt;
&lt;br /&gt;
* [http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY]&lt;br /&gt;
* [http://ttssh2.sourceforge.jp/ ttssh2]&lt;br /&gt;
&lt;br /&gt;
Alternatively, all users can use the UMIACS Intranet SFTP Web Applet located [https://intranet.umiacs.umd.edu/ssh/ here] without installing any additional software.&lt;br /&gt;
&lt;br /&gt;
==X11 Forwarding==&lt;br /&gt;
By default, SSH only gives the user shell access to a host.  Enabling X11 Forwarding allows users to run applications with Graphical User Interfaces.&lt;br /&gt;
&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]] using X11 Forwarding.&lt;br /&gt;
 # ssh &#039;&#039;&#039;-X&#039;&#039;&#039; bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Mac users must have X11 installed in their systems for X11 forwarding to work.  This can be checked by looking for X11.app in /Applications/Utilities.  You can find the installer [http://www.apple.com/support/downloads/x11formacosx.html here].&lt;br /&gt;
&lt;br /&gt;
Windows users can enable X11 forwarding on UMIACS desktops by using cygwin to ssh -X.&lt;br /&gt;
If you do not have Cygwin, you will need to forward X through Xming.&lt;br /&gt;
First, enable X forwarding on your secure ssh client. The option is under tunneling in the ssh client settings. This only has to be done once.&lt;br /&gt;
&lt;br /&gt;
[[Image:sshXForward.jpg]]&lt;br /&gt;
&lt;br /&gt;
Next, click save in the main ssh appication window to save this setting.&lt;br /&gt;
&lt;br /&gt;
After this has been done, every time you want to use X forwarding, you need to make sure Xming has been started (it will appear in your task tray) through the start menu programs.&lt;br /&gt;
Now, you will be able to use Xwindow programs from your ssh client.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that the UMIACS Intranet SFTP Web Applet does &#039;&#039;not&#039;&#039; allow X11 Forwarding.&lt;br /&gt;
&lt;br /&gt;
==SSH Tunneling==&lt;br /&gt;
&lt;br /&gt;
You can tunnel one or more ports through an SSH connection such that your packets will look like they are coming from the host you are tunneling to.   This is helpful for services that you would be normally blocked by a firewall.&lt;br /&gt;
&lt;br /&gt;
Please see the [[SecureShellTunneling]] page for more information.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys==&lt;br /&gt;
&lt;br /&gt;
There are some situations where it is important to be able to ssh without entering a password.  This is mostly required when working in clusters.  This is done using ssh keys.  Instead of authenticating with a password, ssh can use a pre-defined set of encryption keys to establish an authorized connection. &lt;br /&gt;
To setup passwordless ssh, do the following.&lt;br /&gt;
&lt;br /&gt;
First, you will need to create a ssh key pair.  It is possible to use a password that you will need to enter at the beginning of your work session.  This is preferable as it is more secure but may cause problems for some clustered work, particularly our TORQUE/MAUI clusters.  If you simply hit &#039;&#039;&#039;[enter]&#039;&#039;&#039;, you will never be prompted for a password when ssh&#039;ing which can lead to security problems.&lt;br /&gt;
&lt;br /&gt;
To create a &#039;&#039;&#039;&#039;&#039;passwordless&#039;&#039;&#039;&#039;&#039; key, type the following.  &#039;&#039;&#039;NOTE: This is &#039;&#039;REQUIRED&#039;&#039; for our [[ClusterGuide|TORQUE/MAUI]]-based clusters!&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
  # ssh-keygen -N &amp;quot;&amp;quot; -t dsa&lt;br /&gt;
&lt;br /&gt;
To create a &#039;&#039;&#039;&#039;&#039;passphrase-protected&#039;&#039;&#039;&#039;&#039; (more-secure) key, type the following.  Do not use this option if you plan to use any of our [[ClusterGuide|TORQUE/MAUI]]-based clusters.&lt;br /&gt;
&lt;br /&gt;
  # ssh-keygen -t dsa&lt;br /&gt;
&lt;br /&gt;
This will produce two files, &#039;&#039;&#039;id_dsa&#039;&#039;&#039; and &#039;&#039;&#039;id_dsa.pub&#039;&#039;&#039;, the private and public keys respectively.  Once you&#039;ve created the keys, you will need to put them into place as follows:&lt;br /&gt;
&lt;br /&gt;
  # mkdir ~/.ssh&lt;br /&gt;
  # chmod 700 ~/.ssh&lt;br /&gt;
  # mv id_dsa ~/.ssh&lt;br /&gt;
  # chmod 600 ~/.ssh/id_dsa&lt;br /&gt;
  # touch ~/.ssh/authorized_keys2&lt;br /&gt;
  # chmod 600 ~/.ssh/authorized_keys2&lt;br /&gt;
  # cat id_dsa.pub &amp;gt;&amp;gt; ~/.ssh/authorized_keys2&lt;br /&gt;
  # rm id_dsa.pub&lt;br /&gt;
&lt;br /&gt;
It is &#039;&#039;&#039;very&#039;&#039;&#039; important that you keep your private key secure!  Ensure that it is chmod&#039;d to 600 and that you do not put it anywhere visible to other users!&lt;br /&gt;
&lt;br /&gt;
If you did not select a passphrase when you generated your keys, you can now ssh without a password.  If you did select a passphrase, you will need to activate the keys as follows:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent [SHELL]&lt;br /&gt;
  # ssh-add -t [TIME]&lt;br /&gt;
&lt;br /&gt;
In this case, &amp;quot;[SHELL]&amp;quot; is your preferred shell and &amp;quot;[TIME]&amp;quot; is the amount of time you&#039;d like the key to be active in seconds.  So, the following would start a bash shell with passwordless ssh active for 30 minutes:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent bash&lt;br /&gt;
  # ssh-add -t 1800&lt;br /&gt;
&lt;br /&gt;
You will be prompted for your passphrase and, when entered correctly, you will be able to ssh without entering a password.&lt;br /&gt;
&lt;br /&gt;
To disable this functionality, simply delete your private key file (&#039;&#039;&#039;~/.ssh/id_dsa&#039;&#039;&#039;) and remove the public key from your &#039;&#039;&#039;~/.ssh/authorized_keys2&#039;&#039;&#039; file.&lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
[http://www.openssh.org/ OpenSSH]&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/windows.html Windows Clients]&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3271</id>
		<title>SecureShell</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3271"/>
		<updated>2010-05-05T15:00:03Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Passwordless SSH with SSH Keys */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Secure Shell (or [http://en.wikipedia.org/wiki/Secure_Shell SSH]) is a network protocol allowing two computers to exchange data securely over an insecure network.  By default use of SSH brings the user to a terminal, but the protocol can be used for other types of data transfer such as [[SFTP]] and [[SCP]].&lt;br /&gt;
&lt;br /&gt;
==Connecting to an SSH Server==&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]].&lt;br /&gt;
 # ssh bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
This will give you access to a terminal on any one of the [[OpenLAB]] servers.  Note that by default you will not have access to applications that require X11 to run.&lt;br /&gt;
&lt;br /&gt;
On Windows XP or Vista hosts there are no SFTP clients installed by default.  Users can install either which will enable SSH and SFTP access.&lt;br /&gt;
&lt;br /&gt;
* [http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY]&lt;br /&gt;
* [http://ttssh2.sourceforge.jp/ ttssh2]&lt;br /&gt;
&lt;br /&gt;
Alternatively, all users can use the UMIACS Intranet SFTP Web Applet located [https://intranet.umiacs.umd.edu/ssh/ here] without installing any additional software.&lt;br /&gt;
&lt;br /&gt;
==X11 Forwarding==&lt;br /&gt;
By default, SSH only gives the user shell access to a host.  Enabling X11 Forwarding allows users to run applications with Graphical User Interfaces.&lt;br /&gt;
&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]] using X11 Forwarding.&lt;br /&gt;
 # ssh &#039;&#039;&#039;-X&#039;&#039;&#039; bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Mac users must have X11 installed in their systems for X11 forwarding to work.  This can be checked by looking for X11.app in /Applications/Utilities.  You can find the installer [http://www.apple.com/support/downloads/x11formacosx.html here].&lt;br /&gt;
&lt;br /&gt;
Windows users can enable X11 forwarding on UMIACS desktops by using cygwin to ssh -X.&lt;br /&gt;
If you do not have Cygwin, you will need to forward X through Xming.&lt;br /&gt;
First, enable X forwarding on your secure ssh client. The option is under tunneling in the ssh client settings. This only has to be done once.&lt;br /&gt;
&lt;br /&gt;
[[Image:sshXForward.jpg]]&lt;br /&gt;
&lt;br /&gt;
Next, click save in the main ssh appication window to save this setting.&lt;br /&gt;
&lt;br /&gt;
After this has been done, every time you want to use X forwarding, you need to make sure Xming has been started (it will appear in your task tray) through the start menu programs.&lt;br /&gt;
Now, you will be able to use Xwindow programs from your ssh client.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that the UMIACS Intranet SFTP Web Applet does &#039;&#039;not&#039;&#039; allow X11 Forwarding.&lt;br /&gt;
&lt;br /&gt;
==SSH Tunneling==&lt;br /&gt;
&lt;br /&gt;
You can tunnel one or more ports through an SSH connection such that your packets will look like they are coming from the host you are tunneling to.   This is helpful for services that you would be normally blocked by a firewall.&lt;br /&gt;
&lt;br /&gt;
Please see the [[SecureShellTunneling]] page for more information.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys==&lt;br /&gt;
&lt;br /&gt;
There are some situations where it is important to be able to ssh without entering a password.  This is mostly required when working in clusters.  This is done using ssh keys.  Instead of authenticating with a password, ssh can use a pre-defined set of encryption keys to establish an authorized connection. &lt;br /&gt;
To setup passwordless ssh, do the following.&lt;br /&gt;
&lt;br /&gt;
First, you will need to create a ssh key pair.  It is possible to use a password that you will need to enter at the beginning of your work session.  This is preferable as it is more secure but may cause problems for some clustered work, particularly our TORQUE/MAUI clusters.  If you simply hit &#039;&#039;&#039;[enter]&#039;&#039;&#039;, you will never be prompted for a password when ssh&#039;ing which can lead to security problems.&lt;br /&gt;
&lt;br /&gt;
To create a &#039;&#039;&#039;&#039;&#039;passwordless&#039;&#039;&#039;&#039;&#039; key, type the following.  &#039;&#039;&#039;NOTE: This is &#039;&#039;REQUIRED&#039;&#039; for our [[ClusterGuide|TORQUE/MAUI]]-based clusters!&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
  # ssh-keygen -N &amp;quot;&amp;quot; -t dsa&lt;br /&gt;
&lt;br /&gt;
To create a &#039;&#039;&#039;&#039;&#039;passphrase-protected&#039;&#039;&#039;&#039;&#039; (more-secure) key, type the following.  Do not use this option if you plan to use our any of [[ClusterGuide|TORQUE/MAUI]]-based clusters.&lt;br /&gt;
&lt;br /&gt;
  # ssh-keygen -t dsa&lt;br /&gt;
&lt;br /&gt;
This will produce two files, &#039;&#039;&#039;id_dsa&#039;&#039;&#039; and &#039;&#039;&#039;id_dsa.pub&#039;&#039;&#039;, the private and public keys respectively.  Once you&#039;ve created the keys, you will need to put them into place as follows:&lt;br /&gt;
&lt;br /&gt;
  # mkdir ~/.ssh&lt;br /&gt;
  # chmod 700 ~/.ssh&lt;br /&gt;
  # mv id_dsa ~/.ssh&lt;br /&gt;
  # chmod 600 ~/.ssh/id_dsa&lt;br /&gt;
  # touch ~/.ssh/authorized_keys2&lt;br /&gt;
  # chmod 600 ~/.ssh/authorized_keys2&lt;br /&gt;
  # cat id_dsa.pub &amp;gt;&amp;gt; ~/.ssh/authorized_keys2&lt;br /&gt;
  # rm id_dsa.pub&lt;br /&gt;
&lt;br /&gt;
It is &#039;&#039;&#039;very&#039;&#039;&#039; important that you keep your private key secure!  Ensure that it is chmod&#039;d to 600 and that you do not put it anywhere visible to other users!&lt;br /&gt;
&lt;br /&gt;
If you did not select a passphrase when you generated your keys, you can now ssh without a password.  If you did select a passphrase, you will need to activate the keys as follows:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent [SHELL]&lt;br /&gt;
  # ssh-add -t [TIME]&lt;br /&gt;
&lt;br /&gt;
In this case, &amp;quot;[SHELL]&amp;quot; is your preferred shell and &amp;quot;[TIME]&amp;quot; is the amount of time you&#039;d like the key to be active in seconds.  So, the following would start a bash shell with passwordless ssh active for 30 minutes:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent bash&lt;br /&gt;
  # ssh-add -t 1800&lt;br /&gt;
&lt;br /&gt;
You will be prompted for your passphrase and, when entered correctly, you will be able to ssh without entering a password.&lt;br /&gt;
&lt;br /&gt;
To disable this functionality, simply delete your private key file (&#039;&#039;&#039;~/.ssh/id_dsa&#039;&#039;&#039;) and remove the public key from your &#039;&#039;&#039;~/.ssh/authorized_keys2&#039;&#039;&#039; file.&lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
[http://www.openssh.org/ OpenSSH]&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/windows.html Windows Clients]&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3264</id>
		<title>SecureShell</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3264"/>
		<updated>2010-05-04T22:12:54Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Passwordless SSH with SSH Keys for TORQUE/MAUI Cluster */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Secure Shell (or [http://en.wikipedia.org/wiki/Secure_Shell SSH]) is a network protocol allowing two computers to exchange data securely over an insecure network.  By default use of SSH brings the user to a terminal, but the protocol can be used for other types of data transfer such as [[SFTP]] and [[SCP]].&lt;br /&gt;
&lt;br /&gt;
==Connecting to an SSH Server==&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]].&lt;br /&gt;
 # ssh bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
This will give you access to a terminal on any one of the [[OpenLAB]] servers.  Note that by default you will not have access to applications that require X11 to run.&lt;br /&gt;
&lt;br /&gt;
On Windows XP or Vista hosts there are no SFTP clients installed by default.  Users can install either which will enable SSH and SFTP access.&lt;br /&gt;
&lt;br /&gt;
* [http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY]&lt;br /&gt;
* [http://ttssh2.sourceforge.jp/ ttssh2]&lt;br /&gt;
&lt;br /&gt;
Alternatively, all users can use the UMIACS Intranet SFTP Web Applet located [https://intranet.umiacs.umd.edu/ssh/ here] without installing any additional software.&lt;br /&gt;
&lt;br /&gt;
==X11 Forwarding==&lt;br /&gt;
By default, SSH only gives the user shell access to a host.  Enabling X11 Forwarding allows users to run applications with Graphical User Interfaces.&lt;br /&gt;
&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]] using X11 Forwarding.&lt;br /&gt;
 # ssh &#039;&#039;&#039;-X&#039;&#039;&#039; bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Mac users must have X11 installed in their systems for X11 forwarding to work.  This can be checked by looking for X11.app in /Applications/Utilities.  You can find the installer [http://www.apple.com/support/downloads/x11formacosx.html here].&lt;br /&gt;
&lt;br /&gt;
Windows users can enable X11 forwarding on UMIACS desktops by using cygwin to ssh -X.&lt;br /&gt;
If you do not have Cygwin, you will need to forward X through Xming.&lt;br /&gt;
First, enable X forwarding on your secure ssh client. The option is under tunneling in the ssh client settings. This only has to be done once.&lt;br /&gt;
&lt;br /&gt;
[[Image:sshXForward.jpg]]&lt;br /&gt;
&lt;br /&gt;
Next, click save in the main ssh appication window to save this setting.&lt;br /&gt;
&lt;br /&gt;
After this has been done, every time you want to use X forwarding, you need to make sure Xming has been started (it will appear in your task tray) through the start menu programs.&lt;br /&gt;
Now, you will be able to use Xwindow programs from your ssh client.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that the UMIACS Intranet SFTP Web Applet does &#039;&#039;not&#039;&#039; allow X11 Forwarding.&lt;br /&gt;
&lt;br /&gt;
==SSH Tunneling==&lt;br /&gt;
&lt;br /&gt;
You can tunnel one or more ports through an SSH connection such that your packets will look like they are coming from the host you are tunneling to.   This is helpful for services that you would be normally blocked by a firewall.&lt;br /&gt;
&lt;br /&gt;
Please see the [[SecureShellTunneling]] page for more information.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys==&lt;br /&gt;
&lt;br /&gt;
There are some situations where it is important to be able to ssh without entering a password.  This is mostly required when working in clusters.  This is done using ssh keys.  Instead of authenticating with a password, ssh can use a pre-defined set of encryption keys to establish an authorized connection. &lt;br /&gt;
To setup passwordless ssh, do the following.&lt;br /&gt;
&lt;br /&gt;
First, create an ssh key pair:&lt;br /&gt;
&lt;br /&gt;
  # ssh-keygen -t dsa&lt;br /&gt;
&lt;br /&gt;
The command will prompt you for a passphrase.  If you use a password, you will need to enter it at the beginning of your work session.  This is preferable as it is more secure but may cause problems for some clustered work, such as TORQUE/MAUI cluster.  If you simply hit &#039;&#039;&#039;[enter]&#039;&#039;&#039;, you will never be prompted for a password when ssh&#039;ing which can lead to security problems.&lt;br /&gt;
&lt;br /&gt;
This will produce two files, &#039;&#039;&#039;id_dsa&#039;&#039;&#039; and &#039;&#039;&#039;id_dsa.pub&#039;&#039;&#039;, the private and public keys respectively.  Once you&#039;ve created the keys, you will need to put them into place as follows:&lt;br /&gt;
&lt;br /&gt;
  # mkdir ~/.ssh&lt;br /&gt;
  # chmod 700 ~/.ssh&lt;br /&gt;
  # mv id_dsa ~/.ssh&lt;br /&gt;
  # chmod 600 ~/.ssh/id_dsa&lt;br /&gt;
  # touch ~/.ssh/authorized_keys2&lt;br /&gt;
  # chmod 600 ~/.ssh/authorized_keys2&lt;br /&gt;
  # cat id_dsa.pub &amp;gt;&amp;gt; authorized_keys2&lt;br /&gt;
  # rm id_dsa.pub&lt;br /&gt;
&lt;br /&gt;
It is &#039;&#039;&#039;very&#039;&#039;&#039; important that you keep your private key secure!  Ensure that it is chmod&#039;d to 600 and that you do not put it anywhere visible to other users!&lt;br /&gt;
&lt;br /&gt;
If you did not select a passphrase when you generated your keys, you can now ssh without a password.  If you did select a passphrase, you will need to activate the keys as follows:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent [SHELL]&lt;br /&gt;
  # ssh-add -t [TIME]&lt;br /&gt;
&lt;br /&gt;
In this case, &amp;quot;[SHELL]&amp;quot; is your preferred shell and &amp;quot;[TIME]&amp;quot; is the amount of time you&#039;d like the key to be active in seconds.  So, the following would start a bash shell with passwordless ssh active for 30 minutes:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent bash&lt;br /&gt;
  # ssh-add -t 1800&lt;br /&gt;
&lt;br /&gt;
You will be prompted for your passphrase and, when entered correctly, you will be able to ssh without entering a password.&lt;br /&gt;
&lt;br /&gt;
To disable this functionality, simply delete your private key file (&#039;&#039;&#039;~/.ssh/id_dsa&#039;&#039;&#039;) and remove the public key from your &#039;&#039;&#039;~/.ssh/authorized_keys2&#039;&#039;&#039; file.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys for TORQUE/MAUI Cluster==&lt;br /&gt;
&lt;br /&gt;
To set up passwordless ssh for TORQUE/MAUI cluster, please follow the steps below.&lt;br /&gt;
&lt;br /&gt;
 #cd $HOME&lt;br /&gt;
 #ssh-keygen -t dsa -N &amp;quot;&amp;quot; -f $HOME/.ssh/id_dsa&lt;br /&gt;
 #cd .ssh&lt;br /&gt;
 #touch authorized_keys2&lt;br /&gt;
 #cat id_dsa.pub &amp;gt;&amp;gt; authorized_keys2&lt;br /&gt;
 #chmod 640 authorized_keys2&lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
[http://www.openssh.org/ OpenSSH]&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/windows.html Windows Clients]&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3263</id>
		<title>SecureShell</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3263"/>
		<updated>2010-05-04T22:11:59Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Passwordless SSH with SSH Keys */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Secure Shell (or [http://en.wikipedia.org/wiki/Secure_Shell SSH]) is a network protocol allowing two computers to exchange data securely over an insecure network.  By default use of SSH brings the user to a terminal, but the protocol can be used for other types of data transfer such as [[SFTP]] and [[SCP]].&lt;br /&gt;
&lt;br /&gt;
==Connecting to an SSH Server==&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]].&lt;br /&gt;
 # ssh bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
This will give you access to a terminal on any one of the [[OpenLAB]] servers.  Note that by default you will not have access to applications that require X11 to run.&lt;br /&gt;
&lt;br /&gt;
On Windows XP or Vista hosts there are no SFTP clients installed by default.  Users can install either which will enable SSH and SFTP access.&lt;br /&gt;
&lt;br /&gt;
* [http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY]&lt;br /&gt;
* [http://ttssh2.sourceforge.jp/ ttssh2]&lt;br /&gt;
&lt;br /&gt;
Alternatively, all users can use the UMIACS Intranet SFTP Web Applet located [https://intranet.umiacs.umd.edu/ssh/ here] without installing any additional software.&lt;br /&gt;
&lt;br /&gt;
==X11 Forwarding==&lt;br /&gt;
By default, SSH only gives the user shell access to a host.  Enabling X11 Forwarding allows users to run applications with Graphical User Interfaces.&lt;br /&gt;
&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]] using X11 Forwarding.&lt;br /&gt;
 # ssh &#039;&#039;&#039;-X&#039;&#039;&#039; bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Mac users must have X11 installed in their systems for X11 forwarding to work.  This can be checked by looking for X11.app in /Applications/Utilities.  You can find the installer [http://www.apple.com/support/downloads/x11formacosx.html here].&lt;br /&gt;
&lt;br /&gt;
Windows users can enable X11 forwarding on UMIACS desktops by using cygwin to ssh -X.&lt;br /&gt;
If you do not have Cygwin, you will need to forward X through Xming.&lt;br /&gt;
First, enable X forwarding on your secure ssh client. The option is under tunneling in the ssh client settings. This only has to be done once.&lt;br /&gt;
&lt;br /&gt;
[[Image:sshXForward.jpg]]&lt;br /&gt;
&lt;br /&gt;
Next, click save in the main ssh appication window to save this setting.&lt;br /&gt;
&lt;br /&gt;
After this has been done, every time you want to use X forwarding, you need to make sure Xming has been started (it will appear in your task tray) through the start menu programs.&lt;br /&gt;
Now, you will be able to use Xwindow programs from your ssh client.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that the UMIACS Intranet SFTP Web Applet does &#039;&#039;not&#039;&#039; allow X11 Forwarding.&lt;br /&gt;
&lt;br /&gt;
==SSH Tunneling==&lt;br /&gt;
&lt;br /&gt;
You can tunnel one or more ports through an SSH connection such that your packets will look like they are coming from the host you are tunneling to.   This is helpful for services that you would be normally blocked by a firewall.&lt;br /&gt;
&lt;br /&gt;
Please see the [[SecureShellTunneling]] page for more information.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys==&lt;br /&gt;
&lt;br /&gt;
There are some situations where it is important to be able to ssh without entering a password.  This is mostly required when working in clusters.  This is done using ssh keys.  Instead of authenticating with a password, ssh can use a pre-defined set of encryption keys to establish an authorized connection. &lt;br /&gt;
To setup passwordless ssh, do the following.&lt;br /&gt;
&lt;br /&gt;
First, create an ssh key pair:&lt;br /&gt;
&lt;br /&gt;
  # ssh-keygen -t dsa&lt;br /&gt;
&lt;br /&gt;
The command will prompt you for a passphrase.  If you use a password, you will need to enter it at the beginning of your work session.  This is preferable as it is more secure but may cause problems for some clustered work, such as TORQUE/MAUI cluster.  If you simply hit &#039;&#039;&#039;[enter]&#039;&#039;&#039;, you will never be prompted for a password when ssh&#039;ing which can lead to security problems.&lt;br /&gt;
&lt;br /&gt;
This will produce two files, &#039;&#039;&#039;id_dsa&#039;&#039;&#039; and &#039;&#039;&#039;id_dsa.pub&#039;&#039;&#039;, the private and public keys respectively.  Once you&#039;ve created the keys, you will need to put them into place as follows:&lt;br /&gt;
&lt;br /&gt;
  # mkdir ~/.ssh&lt;br /&gt;
  # chmod 700 ~/.ssh&lt;br /&gt;
  # mv id_dsa ~/.ssh&lt;br /&gt;
  # chmod 600 ~/.ssh/id_dsa&lt;br /&gt;
  # touch ~/.ssh/authorized_keys2&lt;br /&gt;
  # chmod 600 ~/.ssh/authorized_keys2&lt;br /&gt;
  # cat id_dsa.pub &amp;gt;&amp;gt; authorized_keys2&lt;br /&gt;
  # rm id_dsa.pub&lt;br /&gt;
&lt;br /&gt;
It is &#039;&#039;&#039;very&#039;&#039;&#039; important that you keep your private key secure!  Ensure that it is chmod&#039;d to 600 and that you do not put it anywhere visible to other users!&lt;br /&gt;
&lt;br /&gt;
If you did not select a passphrase when you generated your keys, you can now ssh without a password.  If you did select a passphrase, you will need to activate the keys as follows:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent [SHELL]&lt;br /&gt;
  # ssh-add -t [TIME]&lt;br /&gt;
&lt;br /&gt;
In this case, &amp;quot;[SHELL]&amp;quot; is your preferred shell and &amp;quot;[TIME]&amp;quot; is the amount of time you&#039;d like the key to be active in seconds.  So, the following would start a bash shell with passwordless ssh active for 30 minutes:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent bash&lt;br /&gt;
  # ssh-add -t 1800&lt;br /&gt;
&lt;br /&gt;
You will be prompted for your passphrase and, when entered correctly, you will be able to ssh without entering a password.&lt;br /&gt;
&lt;br /&gt;
To disable this functionality, simply delete your private key file (&#039;&#039;&#039;~/.ssh/id_dsa&#039;&#039;&#039;) and remove the public key from your &#039;&#039;&#039;~/.ssh/authorized_keys2&#039;&#039;&#039; file.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys for TORQUE/MAUI Cluster==&lt;br /&gt;
&lt;br /&gt;
To set up passwordless ssh for TORQUE/MAUI cluster, do the following.&lt;br /&gt;
&lt;br /&gt;
 #cd $HOME&lt;br /&gt;
 #ssh-keygen -t dsa -N &amp;quot;&amp;quot; -f $HOME/.ssh/id_dsa&lt;br /&gt;
 #cd .ssh&lt;br /&gt;
 #touch authorized_keys2&lt;br /&gt;
 #cat id_dsa.pub &amp;gt;&amp;gt; authorized_keys2&lt;br /&gt;
 #chmod 640 authorized_keys2&lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
[http://www.openssh.org/ OpenSSH]&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/windows.html Windows Clients]&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3260</id>
		<title>SecureShell</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3260"/>
		<updated>2010-05-04T22:09:23Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Passwordless SSH with SSH Keys for TORQUE/MAUI Cluster */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Secure Shell (or [http://en.wikipedia.org/wiki/Secure_Shell SSH]) is a network protocol allowing two computers to exchange data securely over an insecure network.  By default use of SSH brings the user to a terminal, but the protocol can be used for other types of data transfer such as [[SFTP]] and [[SCP]].&lt;br /&gt;
&lt;br /&gt;
==Connecting to an SSH Server==&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]].&lt;br /&gt;
 # ssh bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
This will give you access to a terminal on any one of the [[OpenLAB]] servers.  Note that by default you will not have access to applications that require X11 to run.&lt;br /&gt;
&lt;br /&gt;
On Windows XP or Vista hosts there are no SFTP clients installed by default.  Users can install either which will enable SSH and SFTP access.&lt;br /&gt;
&lt;br /&gt;
* [http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY]&lt;br /&gt;
* [http://ttssh2.sourceforge.jp/ ttssh2]&lt;br /&gt;
&lt;br /&gt;
Alternatively, all users can use the UMIACS Intranet SFTP Web Applet located [https://intranet.umiacs.umd.edu/ssh/ here] without installing any additional software.&lt;br /&gt;
&lt;br /&gt;
==X11 Forwarding==&lt;br /&gt;
By default, SSH only gives the user shell access to a host.  Enabling X11 Forwarding allows users to run applications with Graphical User Interfaces.&lt;br /&gt;
&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]] using X11 Forwarding.&lt;br /&gt;
 # ssh &#039;&#039;&#039;-X&#039;&#039;&#039; bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Mac users must have X11 installed in their systems for X11 forwarding to work.  This can be checked by looking for X11.app in /Applications/Utilities.  You can find the installer [http://www.apple.com/support/downloads/x11formacosx.html here].&lt;br /&gt;
&lt;br /&gt;
Windows users can enable X11 forwarding on UMIACS desktops by using cygwin to ssh -X.&lt;br /&gt;
If you do not have Cygwin, you will need to forward X through Xming.&lt;br /&gt;
First, enable X forwarding on your secure ssh client. The option is under tunneling in the ssh client settings. This only has to be done once.&lt;br /&gt;
&lt;br /&gt;
[[Image:sshXForward.jpg]]&lt;br /&gt;
&lt;br /&gt;
Next, click save in the main ssh appication window to save this setting.&lt;br /&gt;
&lt;br /&gt;
After this has been done, every time you want to use X forwarding, you need to make sure Xming has been started (it will appear in your task tray) through the start menu programs.&lt;br /&gt;
Now, you will be able to use Xwindow programs from your ssh client.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that the UMIACS Intranet SFTP Web Applet does &#039;&#039;not&#039;&#039; allow X11 Forwarding.&lt;br /&gt;
&lt;br /&gt;
==SSH Tunneling==&lt;br /&gt;
&lt;br /&gt;
You can tunnel one or more ports through an SSH connection such that your packets will look like they are coming from the host you are tunneling to.   This is helpful for services that you would be normally blocked by a firewall.&lt;br /&gt;
&lt;br /&gt;
Please see the [[SecureShellTunneling]] page for more information.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys==&lt;br /&gt;
&lt;br /&gt;
There are some situations where it is important to be able to ssh without entering a password.  This is mostly required when working in clusters.  This is done using ssh keys.  Instead of authenticating with a password, ssh can use a pre-defined set of encryption keys to establish an authorized connection. &lt;br /&gt;
To setup passwordless ssh, do the following.&lt;br /&gt;
&lt;br /&gt;
First, create an ssh key pair:&lt;br /&gt;
&lt;br /&gt;
  # ssh-keygen -t dsa&lt;br /&gt;
&lt;br /&gt;
The command will prompt you for a passphrase.  If you use a password, you will need to enter it at the beginning of your work session.  This is preferable as it is more secure but may cause problems for some clustered work, such as TORQUE/PBS cluster.  If you simply hit &#039;&#039;&#039;[enter]&#039;&#039;&#039;, you will never be prompted for a password when ssh&#039;ing which can lead to security problems.&lt;br /&gt;
&lt;br /&gt;
This will produce two files, &#039;&#039;&#039;id_dsa&#039;&#039;&#039; and &#039;&#039;&#039;id_dsa.pub&#039;&#039;&#039;, the private and public keys respectively.  Once you&#039;ve created the keys, you will need to put them into place as follows:&lt;br /&gt;
&lt;br /&gt;
  # mkdir ~/.ssh&lt;br /&gt;
  # chmod 700 ~/.ssh&lt;br /&gt;
  # mv id_dsa ~/.ssh&lt;br /&gt;
  # chmod 600 ~/.ssh/id_dsa&lt;br /&gt;
  # touch ~/.ssh/authorized_keys2&lt;br /&gt;
  # chmod 600 ~/.ssh/authorized_keys2&lt;br /&gt;
  # cat id_dsa.pub &amp;gt;&amp;gt; authorized_keys2&lt;br /&gt;
  # rm id_dsa.pub&lt;br /&gt;
&lt;br /&gt;
It is &#039;&#039;&#039;very&#039;&#039;&#039; important that you keep your private key secure!  Ensure that it is chmod&#039;d to 600 and that you do not put it anywhere visible to other users!&lt;br /&gt;
&lt;br /&gt;
If you did not select a passphrase when you generated your keys, you can now ssh without a password.  If you did select a passphrase, you will need to activate the keys as follows:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent [SHELL]&lt;br /&gt;
  # ssh-add -t [TIME]&lt;br /&gt;
&lt;br /&gt;
In this case, &amp;quot;[SHELL]&amp;quot; is your preferred shell and &amp;quot;[TIME]&amp;quot; is the amount of time you&#039;d like the key to be active in seconds.  So, the following would start a bash shell with passwordless ssh active for 30 minutes:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent bash&lt;br /&gt;
  # ssh-add -t 1800&lt;br /&gt;
&lt;br /&gt;
You will be prompted for your passphrase and, when entered correctly, you will be able to ssh without entering a password.&lt;br /&gt;
&lt;br /&gt;
To disable this functionality, simply delete your private key file (&#039;&#039;&#039;~/.ssh/id_dsa&#039;&#039;&#039;) and remove the public key from your &#039;&#039;&#039;~/.ssh/authorized_keys2&#039;&#039;&#039; file.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys for TORQUE/MAUI Cluster==&lt;br /&gt;
&lt;br /&gt;
To set up passwordless ssh for TORQUE/MAUI cluster, do the following.&lt;br /&gt;
&lt;br /&gt;
 #cd $HOME&lt;br /&gt;
 #ssh-keygen -t dsa -N &amp;quot;&amp;quot; -f $HOME/.ssh/id_dsa&lt;br /&gt;
 #cd .ssh&lt;br /&gt;
 #touch authorized_keys2&lt;br /&gt;
 #cat id_dsa.pub &amp;gt;&amp;gt; authorized_keys2&lt;br /&gt;
 #chmod 640 authorized_keys2&lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
[http://www.openssh.org/ OpenSSH]&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/windows.html Windows Clients]&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3259</id>
		<title>SecureShell</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3259"/>
		<updated>2010-05-04T22:08:56Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Passwordless SSH with SSH Keys for TORQUE/MAUI Cluster */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Secure Shell (or [http://en.wikipedia.org/wiki/Secure_Shell SSH]) is a network protocol allowing two computers to exchange data securely over an insecure network.  By default use of SSH brings the user to a terminal, but the protocol can be used for other types of data transfer such as [[SFTP]] and [[SCP]].&lt;br /&gt;
&lt;br /&gt;
==Connecting to an SSH Server==&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]].&lt;br /&gt;
 # ssh bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
This will give you access to a terminal on any one of the [[OpenLAB]] servers.  Note that by default you will not have access to applications that require X11 to run.&lt;br /&gt;
&lt;br /&gt;
On Windows XP or Vista hosts there are no SFTP clients installed by default.  Users can install either which will enable SSH and SFTP access.&lt;br /&gt;
&lt;br /&gt;
* [http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY]&lt;br /&gt;
* [http://ttssh2.sourceforge.jp/ ttssh2]&lt;br /&gt;
&lt;br /&gt;
Alternatively, all users can use the UMIACS Intranet SFTP Web Applet located [https://intranet.umiacs.umd.edu/ssh/ here] without installing any additional software.&lt;br /&gt;
&lt;br /&gt;
==X11 Forwarding==&lt;br /&gt;
By default, SSH only gives the user shell access to a host.  Enabling X11 Forwarding allows users to run applications with Graphical User Interfaces.&lt;br /&gt;
&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]] using X11 Forwarding.&lt;br /&gt;
 # ssh &#039;&#039;&#039;-X&#039;&#039;&#039; bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Mac users must have X11 installed in their systems for X11 forwarding to work.  This can be checked by looking for X11.app in /Applications/Utilities.  You can find the installer [http://www.apple.com/support/downloads/x11formacosx.html here].&lt;br /&gt;
&lt;br /&gt;
Windows users can enable X11 forwarding on UMIACS desktops by using cygwin to ssh -X.&lt;br /&gt;
If you do not have Cygwin, you will need to forward X through Xming.&lt;br /&gt;
First, enable X forwarding on your secure ssh client. The option is under tunneling in the ssh client settings. This only has to be done once.&lt;br /&gt;
&lt;br /&gt;
[[Image:sshXForward.jpg]]&lt;br /&gt;
&lt;br /&gt;
Next, click save in the main ssh appication window to save this setting.&lt;br /&gt;
&lt;br /&gt;
After this has been done, every time you want to use X forwarding, you need to make sure Xming has been started (it will appear in your task tray) through the start menu programs.&lt;br /&gt;
Now, you will be able to use Xwindow programs from your ssh client.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that the UMIACS Intranet SFTP Web Applet does &#039;&#039;not&#039;&#039; allow X11 Forwarding.&lt;br /&gt;
&lt;br /&gt;
==SSH Tunneling==&lt;br /&gt;
&lt;br /&gt;
You can tunnel one or more ports through an SSH connection such that your packets will look like they are coming from the host you are tunneling to.   This is helpful for services that you would be normally blocked by a firewall.&lt;br /&gt;
&lt;br /&gt;
Please see the [[SecureShellTunneling]] page for more information.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys==&lt;br /&gt;
&lt;br /&gt;
There are some situations where it is important to be able to ssh without entering a password.  This is mostly required when working in clusters.  This is done using ssh keys.  Instead of authenticating with a password, ssh can use a pre-defined set of encryption keys to establish an authorized connection. &lt;br /&gt;
To setup passwordless ssh, do the following.&lt;br /&gt;
&lt;br /&gt;
First, create an ssh key pair:&lt;br /&gt;
&lt;br /&gt;
  # ssh-keygen -t dsa&lt;br /&gt;
&lt;br /&gt;
The command will prompt you for a passphrase.  If you use a password, you will need to enter it at the beginning of your work session.  This is preferable as it is more secure but may cause problems for some clustered work, such as TORQUE/PBS cluster.  If you simply hit &#039;&#039;&#039;[enter]&#039;&#039;&#039;, you will never be prompted for a password when ssh&#039;ing which can lead to security problems.&lt;br /&gt;
&lt;br /&gt;
This will produce two files, &#039;&#039;&#039;id_dsa&#039;&#039;&#039; and &#039;&#039;&#039;id_dsa.pub&#039;&#039;&#039;, the private and public keys respectively.  Once you&#039;ve created the keys, you will need to put them into place as follows:&lt;br /&gt;
&lt;br /&gt;
  # mkdir ~/.ssh&lt;br /&gt;
  # chmod 700 ~/.ssh&lt;br /&gt;
  # mv id_dsa ~/.ssh&lt;br /&gt;
  # chmod 600 ~/.ssh/id_dsa&lt;br /&gt;
  # touch ~/.ssh/authorized_keys2&lt;br /&gt;
  # chmod 600 ~/.ssh/authorized_keys2&lt;br /&gt;
  # cat id_dsa.pub &amp;gt;&amp;gt; authorized_keys2&lt;br /&gt;
  # rm id_dsa.pub&lt;br /&gt;
&lt;br /&gt;
It is &#039;&#039;&#039;very&#039;&#039;&#039; important that you keep your private key secure!  Ensure that it is chmod&#039;d to 600 and that you do not put it anywhere visible to other users!&lt;br /&gt;
&lt;br /&gt;
If you did not select a passphrase when you generated your keys, you can now ssh without a password.  If you did select a passphrase, you will need to activate the keys as follows:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent [SHELL]&lt;br /&gt;
  # ssh-add -t [TIME]&lt;br /&gt;
&lt;br /&gt;
In this case, &amp;quot;[SHELL]&amp;quot; is your preferred shell and &amp;quot;[TIME]&amp;quot; is the amount of time you&#039;d like the key to be active in seconds.  So, the following would start a bash shell with passwordless ssh active for 30 minutes:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent bash&lt;br /&gt;
  # ssh-add -t 1800&lt;br /&gt;
&lt;br /&gt;
You will be prompted for your passphrase and, when entered correctly, you will be able to ssh without entering a password.&lt;br /&gt;
&lt;br /&gt;
To disable this functionality, simply delete your private key file (&#039;&#039;&#039;~/.ssh/id_dsa&#039;&#039;&#039;) and remove the public key from your &#039;&#039;&#039;~/.ssh/authorized_keys2&#039;&#039;&#039; file.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys for TORQUE/MAUI Cluster==&lt;br /&gt;
&lt;br /&gt;
To set up passwordless ssh for TORQUE/PBS cluster, do the following.&lt;br /&gt;
&lt;br /&gt;
 #cd $HOME&lt;br /&gt;
 #ssh-keygen -t dsa -N &amp;quot;&amp;quot; -f $HOME/.ssh/id_dsa&lt;br /&gt;
 #cd .ssh&lt;br /&gt;
 #touch authorized_keys2&lt;br /&gt;
 #cat id_dsa.pub &amp;gt;&amp;gt; authorized_keys2&lt;br /&gt;
 #chmod 640 authorized_keys2&lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
[http://www.openssh.org/ OpenSSH]&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/windows.html Windows Clients]&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3258</id>
		<title>SecureShell</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3258"/>
		<updated>2010-05-04T22:07:59Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Passwordless SSH with SSH Keys for TORQUE/MAUI Cluster */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Secure Shell (or [http://en.wikipedia.org/wiki/Secure_Shell SSH]) is a network protocol allowing two computers to exchange data securely over an insecure network.  By default use of SSH brings the user to a terminal, but the protocol can be used for other types of data transfer such as [[SFTP]] and [[SCP]].&lt;br /&gt;
&lt;br /&gt;
==Connecting to an SSH Server==&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]].&lt;br /&gt;
 # ssh bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
This will give you access to a terminal on any one of the [[OpenLAB]] servers.  Note that by default you will not have access to applications that require X11 to run.&lt;br /&gt;
&lt;br /&gt;
On Windows XP or Vista hosts there are no SFTP clients installed by default.  Users can install either which will enable SSH and SFTP access.&lt;br /&gt;
&lt;br /&gt;
* [http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY]&lt;br /&gt;
* [http://ttssh2.sourceforge.jp/ ttssh2]&lt;br /&gt;
&lt;br /&gt;
Alternatively, all users can use the UMIACS Intranet SFTP Web Applet located [https://intranet.umiacs.umd.edu/ssh/ here] without installing any additional software.&lt;br /&gt;
&lt;br /&gt;
==X11 Forwarding==&lt;br /&gt;
By default, SSH only gives the user shell access to a host.  Enabling X11 Forwarding allows users to run applications with Graphical User Interfaces.&lt;br /&gt;
&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]] using X11 Forwarding.&lt;br /&gt;
 # ssh &#039;&#039;&#039;-X&#039;&#039;&#039; bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Mac users must have X11 installed in their systems for X11 forwarding to work.  This can be checked by looking for X11.app in /Applications/Utilities.  You can find the installer [http://www.apple.com/support/downloads/x11formacosx.html here].&lt;br /&gt;
&lt;br /&gt;
Windows users can enable X11 forwarding on UMIACS desktops by using cygwin to ssh -X.&lt;br /&gt;
If you do not have Cygwin, you will need to forward X through Xming.&lt;br /&gt;
First, enable X forwarding on your secure ssh client. The option is under tunneling in the ssh client settings. This only has to be done once.&lt;br /&gt;
&lt;br /&gt;
[[Image:sshXForward.jpg]]&lt;br /&gt;
&lt;br /&gt;
Next, click save in the main ssh appication window to save this setting.&lt;br /&gt;
&lt;br /&gt;
After this has been done, every time you want to use X forwarding, you need to make sure Xming has been started (it will appear in your task tray) through the start menu programs.&lt;br /&gt;
Now, you will be able to use Xwindow programs from your ssh client.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that the UMIACS Intranet SFTP Web Applet does &#039;&#039;not&#039;&#039; allow X11 Forwarding.&lt;br /&gt;
&lt;br /&gt;
==SSH Tunneling==&lt;br /&gt;
&lt;br /&gt;
You can tunnel one or more ports through an SSH connection such that your packets will look like they are coming from the host you are tunneling to.   This is helpful for services that you would be normally blocked by a firewall.&lt;br /&gt;
&lt;br /&gt;
Please see the [[SecureShellTunneling]] page for more information.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys==&lt;br /&gt;
&lt;br /&gt;
There are some situations where it is important to be able to ssh without entering a password.  This is mostly required when working in clusters.  This is done using ssh keys.  Instead of authenticating with a password, ssh can use a pre-defined set of encryption keys to establish an authorized connection. &lt;br /&gt;
To setup passwordless ssh, do the following.&lt;br /&gt;
&lt;br /&gt;
First, create an ssh key pair:&lt;br /&gt;
&lt;br /&gt;
  # ssh-keygen -t dsa&lt;br /&gt;
&lt;br /&gt;
The command will prompt you for a passphrase.  If you use a password, you will need to enter it at the beginning of your work session.  This is preferable as it is more secure but may cause problems for some clustered work, such as TORQUE/PBS cluster.  If you simply hit &#039;&#039;&#039;[enter]&#039;&#039;&#039;, you will never be prompted for a password when ssh&#039;ing which can lead to security problems.&lt;br /&gt;
&lt;br /&gt;
This will produce two files, &#039;&#039;&#039;id_dsa&#039;&#039;&#039; and &#039;&#039;&#039;id_dsa.pub&#039;&#039;&#039;, the private and public keys respectively.  Once you&#039;ve created the keys, you will need to put them into place as follows:&lt;br /&gt;
&lt;br /&gt;
  # mkdir ~/.ssh&lt;br /&gt;
  # chmod 700 ~/.ssh&lt;br /&gt;
  # mv id_dsa ~/.ssh&lt;br /&gt;
  # chmod 600 ~/.ssh/id_dsa&lt;br /&gt;
  # touch ~/.ssh/authorized_keys2&lt;br /&gt;
  # chmod 600 ~/.ssh/authorized_keys2&lt;br /&gt;
  # cat id_dsa.pub &amp;gt;&amp;gt; authorized_keys2&lt;br /&gt;
  # rm id_dsa.pub&lt;br /&gt;
&lt;br /&gt;
It is &#039;&#039;&#039;very&#039;&#039;&#039; important that you keep your private key secure!  Ensure that it is chmod&#039;d to 600 and that you do not put it anywhere visible to other users!&lt;br /&gt;
&lt;br /&gt;
If you did not select a passphrase when you generated your keys, you can now ssh without a password.  If you did select a passphrase, you will need to activate the keys as follows:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent [SHELL]&lt;br /&gt;
  # ssh-add -t [TIME]&lt;br /&gt;
&lt;br /&gt;
In this case, &amp;quot;[SHELL]&amp;quot; is your preferred shell and &amp;quot;[TIME]&amp;quot; is the amount of time you&#039;d like the key to be active in seconds.  So, the following would start a bash shell with passwordless ssh active for 30 minutes:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent bash&lt;br /&gt;
  # ssh-add -t 1800&lt;br /&gt;
&lt;br /&gt;
You will be prompted for your passphrase and, when entered correctly, you will be able to ssh without entering a password.&lt;br /&gt;
&lt;br /&gt;
To disable this functionality, simply delete your private key file (&#039;&#039;&#039;~/.ssh/id_dsa&#039;&#039;&#039;) and remove the public key from your &#039;&#039;&#039;~/.ssh/authorized_keys2&#039;&#039;&#039; file.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys for TORQUE/MAUI Cluster==&lt;br /&gt;
&lt;br /&gt;
To set up passwordless ssh for TORQUE/PBS cluster, do the following.&lt;br /&gt;
&lt;br /&gt;
 cd $HOME&lt;br /&gt;
 ssh-keygen -t dsa -N &amp;quot;&amp;quot; -f $HOME/.ssh/id_dsa&lt;br /&gt;
 cd .ssh&lt;br /&gt;
 touch authorized_keys2&lt;br /&gt;
 cat id_dsa.pub &amp;gt;&amp;gt; authorized_keys2&lt;br /&gt;
 chmod 640 authorized_keys2&lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
[http://www.openssh.org/ OpenSSH]&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/windows.html Windows Clients]&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3257</id>
		<title>SecureShell</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3257"/>
		<updated>2010-05-04T22:07:45Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Passwordless SSH with SSH Keys */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Secure Shell (or [http://en.wikipedia.org/wiki/Secure_Shell SSH]) is a network protocol allowing two computers to exchange data securely over an insecure network.  By default use of SSH brings the user to a terminal, but the protocol can be used for other types of data transfer such as [[SFTP]] and [[SCP]].&lt;br /&gt;
&lt;br /&gt;
==Connecting to an SSH Server==&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]].&lt;br /&gt;
 # ssh bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
This will give you access to a terminal on any one of the [[OpenLAB]] servers.  Note that by default you will not have access to applications that require X11 to run.&lt;br /&gt;
&lt;br /&gt;
On Windows XP or Vista hosts there are no SFTP clients installed by default.  Users can install either which will enable SSH and SFTP access.&lt;br /&gt;
&lt;br /&gt;
* [http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY]&lt;br /&gt;
* [http://ttssh2.sourceforge.jp/ ttssh2]&lt;br /&gt;
&lt;br /&gt;
Alternatively, all users can use the UMIACS Intranet SFTP Web Applet located [https://intranet.umiacs.umd.edu/ssh/ here] without installing any additional software.&lt;br /&gt;
&lt;br /&gt;
==X11 Forwarding==&lt;br /&gt;
By default, SSH only gives the user shell access to a host.  Enabling X11 Forwarding allows users to run applications with Graphical User Interfaces.&lt;br /&gt;
&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]] using X11 Forwarding.&lt;br /&gt;
 # ssh &#039;&#039;&#039;-X&#039;&#039;&#039; bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Mac users must have X11 installed in their systems for X11 forwarding to work.  This can be checked by looking for X11.app in /Applications/Utilities.  You can find the installer [http://www.apple.com/support/downloads/x11formacosx.html here].&lt;br /&gt;
&lt;br /&gt;
Windows users can enable X11 forwarding on UMIACS desktops by using cygwin to ssh -X.&lt;br /&gt;
If you do not have Cygwin, you will need to forward X through Xming.&lt;br /&gt;
First, enable X forwarding on your secure ssh client. The option is under tunneling in the ssh client settings. This only has to be done once.&lt;br /&gt;
&lt;br /&gt;
[[Image:sshXForward.jpg]]&lt;br /&gt;
&lt;br /&gt;
Next, click save in the main ssh appication window to save this setting.&lt;br /&gt;
&lt;br /&gt;
After this has been done, every time you want to use X forwarding, you need to make sure Xming has been started (it will appear in your task tray) through the start menu programs.&lt;br /&gt;
Now, you will be able to use Xwindow programs from your ssh client.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that the UMIACS Intranet SFTP Web Applet does &#039;&#039;not&#039;&#039; allow X11 Forwarding.&lt;br /&gt;
&lt;br /&gt;
==SSH Tunneling==&lt;br /&gt;
&lt;br /&gt;
You can tunnel one or more ports through an SSH connection such that your packets will look like they are coming from the host you are tunneling to.   This is helpful for services that you would be normally blocked by a firewall.&lt;br /&gt;
&lt;br /&gt;
Please see the [[SecureShellTunneling]] page for more information.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys==&lt;br /&gt;
&lt;br /&gt;
There are some situations where it is important to be able to ssh without entering a password.  This is mostly required when working in clusters.  This is done using ssh keys.  Instead of authenticating with a password, ssh can use a pre-defined set of encryption keys to establish an authorized connection. &lt;br /&gt;
To setup passwordless ssh, do the following.&lt;br /&gt;
&lt;br /&gt;
First, create an ssh key pair:&lt;br /&gt;
&lt;br /&gt;
  # ssh-keygen -t dsa&lt;br /&gt;
&lt;br /&gt;
The command will prompt you for a passphrase.  If you use a password, you will need to enter it at the beginning of your work session.  This is preferable as it is more secure but may cause problems for some clustered work, such as TORQUE/PBS cluster.  If you simply hit &#039;&#039;&#039;[enter]&#039;&#039;&#039;, you will never be prompted for a password when ssh&#039;ing which can lead to security problems.&lt;br /&gt;
&lt;br /&gt;
This will produce two files, &#039;&#039;&#039;id_dsa&#039;&#039;&#039; and &#039;&#039;&#039;id_dsa.pub&#039;&#039;&#039;, the private and public keys respectively.  Once you&#039;ve created the keys, you will need to put them into place as follows:&lt;br /&gt;
&lt;br /&gt;
  # mkdir ~/.ssh&lt;br /&gt;
  # chmod 700 ~/.ssh&lt;br /&gt;
  # mv id_dsa ~/.ssh&lt;br /&gt;
  # chmod 600 ~/.ssh/id_dsa&lt;br /&gt;
  # touch ~/.ssh/authorized_keys2&lt;br /&gt;
  # chmod 600 ~/.ssh/authorized_keys2&lt;br /&gt;
  # cat id_dsa.pub &amp;gt;&amp;gt; authorized_keys2&lt;br /&gt;
  # rm id_dsa.pub&lt;br /&gt;
&lt;br /&gt;
It is &#039;&#039;&#039;very&#039;&#039;&#039; important that you keep your private key secure!  Ensure that it is chmod&#039;d to 600 and that you do not put it anywhere visible to other users!&lt;br /&gt;
&lt;br /&gt;
If you did not select a passphrase when you generated your keys, you can now ssh without a password.  If you did select a passphrase, you will need to activate the keys as follows:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent [SHELL]&lt;br /&gt;
  # ssh-add -t [TIME]&lt;br /&gt;
&lt;br /&gt;
In this case, &amp;quot;[SHELL]&amp;quot; is your preferred shell and &amp;quot;[TIME]&amp;quot; is the amount of time you&#039;d like the key to be active in seconds.  So, the following would start a bash shell with passwordless ssh active for 30 minutes:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent bash&lt;br /&gt;
  # ssh-add -t 1800&lt;br /&gt;
&lt;br /&gt;
You will be prompted for your passphrase and, when entered correctly, you will be able to ssh without entering a password.&lt;br /&gt;
&lt;br /&gt;
To disable this functionality, simply delete your private key file (&#039;&#039;&#039;~/.ssh/id_dsa&#039;&#039;&#039;) and remove the public key from your &#039;&#039;&#039;~/.ssh/authorized_keys2&#039;&#039;&#039; file.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys for TORQUE/MAUI Cluster==&lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
[http://www.openssh.org/ OpenSSH]&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/windows.html Windows Clients]&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3256</id>
		<title>SecureShell</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3256"/>
		<updated>2010-05-04T22:07:04Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Passwordless SSH with SSH Keys */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Secure Shell (or [http://en.wikipedia.org/wiki/Secure_Shell SSH]) is a network protocol allowing two computers to exchange data securely over an insecure network.  By default use of SSH brings the user to a terminal, but the protocol can be used for other types of data transfer such as [[SFTP]] and [[SCP]].&lt;br /&gt;
&lt;br /&gt;
==Connecting to an SSH Server==&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]].&lt;br /&gt;
 # ssh bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
This will give you access to a terminal on any one of the [[OpenLAB]] servers.  Note that by default you will not have access to applications that require X11 to run.&lt;br /&gt;
&lt;br /&gt;
On Windows XP or Vista hosts there are no SFTP clients installed by default.  Users can install either which will enable SSH and SFTP access.&lt;br /&gt;
&lt;br /&gt;
* [http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY]&lt;br /&gt;
* [http://ttssh2.sourceforge.jp/ ttssh2]&lt;br /&gt;
&lt;br /&gt;
Alternatively, all users can use the UMIACS Intranet SFTP Web Applet located [https://intranet.umiacs.umd.edu/ssh/ here] without installing any additional software.&lt;br /&gt;
&lt;br /&gt;
==X11 Forwarding==&lt;br /&gt;
By default, SSH only gives the user shell access to a host.  Enabling X11 Forwarding allows users to run applications with Graphical User Interfaces.&lt;br /&gt;
&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]] using X11 Forwarding.&lt;br /&gt;
 # ssh &#039;&#039;&#039;-X&#039;&#039;&#039; bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Mac users must have X11 installed in their systems for X11 forwarding to work.  This can be checked by looking for X11.app in /Applications/Utilities.  You can find the installer [http://www.apple.com/support/downloads/x11formacosx.html here].&lt;br /&gt;
&lt;br /&gt;
Windows users can enable X11 forwarding on UMIACS desktops by using cygwin to ssh -X.&lt;br /&gt;
If you do not have Cygwin, you will need to forward X through Xming.&lt;br /&gt;
First, enable X forwarding on your secure ssh client. The option is under tunneling in the ssh client settings. This only has to be done once.&lt;br /&gt;
&lt;br /&gt;
[[Image:sshXForward.jpg]]&lt;br /&gt;
&lt;br /&gt;
Next, click save in the main ssh appication window to save this setting.&lt;br /&gt;
&lt;br /&gt;
After this has been done, every time you want to use X forwarding, you need to make sure Xming has been started (it will appear in your task tray) through the start menu programs.&lt;br /&gt;
Now, you will be able to use Xwindow programs from your ssh client.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that the UMIACS Intranet SFTP Web Applet does &#039;&#039;not&#039;&#039; allow X11 Forwarding.&lt;br /&gt;
&lt;br /&gt;
==SSH Tunneling==&lt;br /&gt;
&lt;br /&gt;
You can tunnel one or more ports through an SSH connection such that your packets will look like they are coming from the host you are tunneling to.   This is helpful for services that you would be normally blocked by a firewall.&lt;br /&gt;
&lt;br /&gt;
Please see the [[SecureShellTunneling]] page for more information.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys==&lt;br /&gt;
&lt;br /&gt;
There are some situations where it is important to be able to ssh without entering a password.  This is mostly required when working in clusters.  This is done using ssh keys.  Instead of authenticating with a password, ssh can use a pre-defined set of encryption keys to establish an authorized connection. To set up passwordless ssh for TORQUE/PBS cluster, do the following.&lt;br /&gt;
&lt;br /&gt;
 cd $HOME&lt;br /&gt;
 ssh-keygen -t dsa -N &amp;quot;&amp;quot; -f $HOME/.ssh/id_dsa&lt;br /&gt;
 cd .ssh&lt;br /&gt;
 touch authorized_keys2&lt;br /&gt;
 cat id_dsa.pub &amp;gt;&amp;gt; authorized_keys2&lt;br /&gt;
 chmod 640 authorized_keys2&lt;br /&gt;
&lt;br /&gt;
To setup passwordless ssh, do the following.&lt;br /&gt;
&lt;br /&gt;
First, create an ssh key pair:&lt;br /&gt;
&lt;br /&gt;
  # ssh-keygen -t dsa&lt;br /&gt;
&lt;br /&gt;
The command will prompt you for a passphrase.  If you use a password, you will need to enter it at the beginning of your work session.  This is preferable as it is more secure but may cause problems for some clustered work, such as TORQUE/PBS cluster.  If you simply hit &#039;&#039;&#039;[enter]&#039;&#039;&#039;, you will never be prompted for a password when ssh&#039;ing which can lead to security problems.&lt;br /&gt;
&lt;br /&gt;
This will produce two files, &#039;&#039;&#039;id_dsa&#039;&#039;&#039; and &#039;&#039;&#039;id_dsa.pub&#039;&#039;&#039;, the private and public keys respectively.  Once you&#039;ve created the keys, you will need to put them into place as follows:&lt;br /&gt;
&lt;br /&gt;
  # mkdir ~/.ssh&lt;br /&gt;
  # chmod 700 ~/.ssh&lt;br /&gt;
  # mv id_dsa ~/.ssh&lt;br /&gt;
  # chmod 600 ~/.ssh/id_dsa&lt;br /&gt;
  # touch ~/.ssh/authorized_keys2&lt;br /&gt;
  # chmod 600 ~/.ssh/authorized_keys2&lt;br /&gt;
  # cat id_dsa.pub &amp;gt;&amp;gt; authorized_keys2&lt;br /&gt;
  # rm id_dsa.pub&lt;br /&gt;
&lt;br /&gt;
It is &#039;&#039;&#039;very&#039;&#039;&#039; important that you keep your private key secure!  Ensure that it is chmod&#039;d to 600 and that you do not put it anywhere visible to other users!&lt;br /&gt;
&lt;br /&gt;
If you did not select a passphrase when you generated your keys, you can now ssh without a password.  If you did select a passphrase, you will need to activate the keys as follows:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent [SHELL]&lt;br /&gt;
  # ssh-add -t [TIME]&lt;br /&gt;
&lt;br /&gt;
In this case, &amp;quot;[SHELL]&amp;quot; is your preferred shell and &amp;quot;[TIME]&amp;quot; is the amount of time you&#039;d like the key to be active in seconds.  So, the following would start a bash shell with passwordless ssh active for 30 minutes:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent bash&lt;br /&gt;
  # ssh-add -t 1800&lt;br /&gt;
&lt;br /&gt;
You will be prompted for your passphrase and, when entered correctly, you will be able to ssh without entering a password.&lt;br /&gt;
&lt;br /&gt;
To disable this functionality, simply delete your private key file (&#039;&#039;&#039;~/.ssh/id_dsa&#039;&#039;&#039;) and remove the public key from your &#039;&#039;&#039;~/.ssh/authorized_keys2&#039;&#039;&#039; file.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys for TORQUE/MAUI Cluster==&lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
[http://www.openssh.org/ OpenSSH]&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/windows.html Windows Clients]&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3251</id>
		<title>SecureShell</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3251"/>
		<updated>2010-05-04T21:39:35Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Passwordless SSH with SSH Keys */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Secure Shell (or [http://en.wikipedia.org/wiki/Secure_Shell SSH]) is a network protocol allowing two computers to exchange data securely over an insecure network.  By default use of SSH brings the user to a terminal, but the protocol can be used for other types of data transfer such as [[SFTP]] and [[SCP]].&lt;br /&gt;
&lt;br /&gt;
==Connecting to an SSH Server==&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]].&lt;br /&gt;
 # ssh bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
This will give you access to a terminal on any one of the [[OpenLAB]] servers.  Note that by default you will not have access to applications that require X11 to run.&lt;br /&gt;
&lt;br /&gt;
On Windows XP or Vista hosts there are no SFTP clients installed by default.  Users can install either which will enable SSH and SFTP access.&lt;br /&gt;
&lt;br /&gt;
* [http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY]&lt;br /&gt;
* [http://ttssh2.sourceforge.jp/ ttssh2]&lt;br /&gt;
&lt;br /&gt;
Alternatively, all users can use the UMIACS Intranet SFTP Web Applet located [https://intranet.umiacs.umd.edu/ssh/ here] without installing any additional software.&lt;br /&gt;
&lt;br /&gt;
==X11 Forwarding==&lt;br /&gt;
By default, SSH only gives the user shell access to a host.  Enabling X11 Forwarding allows users to run applications with Graphical User Interfaces.&lt;br /&gt;
&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]] using X11 Forwarding.&lt;br /&gt;
 # ssh &#039;&#039;&#039;-X&#039;&#039;&#039; bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Mac users must have X11 installed in their systems for X11 forwarding to work.  This can be checked by looking for X11.app in /Applications/Utilities.  You can find the installer [http://www.apple.com/support/downloads/x11formacosx.html here].&lt;br /&gt;
&lt;br /&gt;
Windows users can enable X11 forwarding on UMIACS desktops by using cygwin to ssh -X.&lt;br /&gt;
If you do not have Cygwin, you will need to forward X through Xming.&lt;br /&gt;
First, enable X forwarding on your secure ssh client. The option is under tunneling in the ssh client settings. This only has to be done once.&lt;br /&gt;
&lt;br /&gt;
[[Image:sshXForward.jpg]]&lt;br /&gt;
&lt;br /&gt;
Next, click save in the main ssh appication window to save this setting.&lt;br /&gt;
&lt;br /&gt;
After this has been done, every time you want to use X forwarding, you need to make sure Xming has been started (it will appear in your task tray) through the start menu programs.&lt;br /&gt;
Now, you will be able to use Xwindow programs from your ssh client.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that the UMIACS Intranet SFTP Web Applet does &#039;&#039;not&#039;&#039; allow X11 Forwarding.&lt;br /&gt;
&lt;br /&gt;
==SSH Tunneling==&lt;br /&gt;
&lt;br /&gt;
You can tunnel one or more ports through an SSH connection such that your packets will look like they are coming from the host you are tunneling to.   This is helpful for services that you would be normally blocked by a firewall.&lt;br /&gt;
&lt;br /&gt;
Please see the [[SecureShellTunneling]] page for more information.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys==&lt;br /&gt;
&lt;br /&gt;
There are some situations where it is important to be able to ssh without entering a password.  This is mostly required when working in clusters.  This is done using ssh keys.  Instead of authenticating with a password, ssh can use a pre-defined set of encryption keys to establish an authorized connection. To set up passwordless ssh for TORQUE/PBS cluster, do the following.&lt;br /&gt;
&lt;br /&gt;
 cd $HOME&lt;br /&gt;
 ssh-keygen -t dsa -N &amp;quot;&amp;quot; -f $HOME/.ssh/id_dsa&lt;br /&gt;
 cd .ssh&lt;br /&gt;
 touch authorized_keys2&lt;br /&gt;
 cat id_dsa.pub &amp;gt;&amp;gt; authorized_keys2&lt;br /&gt;
 chmod 640 authorized_keys2&lt;br /&gt;
&lt;br /&gt;
To setup passwordless ssh, do the following.&lt;br /&gt;
&lt;br /&gt;
First, create an ssh key pair:&lt;br /&gt;
&lt;br /&gt;
  # ssh-keygen -t dsa&lt;br /&gt;
&lt;br /&gt;
The command will prompt you for a passphrase.  If you use a password, you will need to enter it at the beginning of your work session.  This is preferable as it is more secure but may cause problems for some clustered work, such as TORQUE/PBS cluster.  If you simply hit &#039;&#039;&#039;[enter]&#039;&#039;&#039;, you will never be prompted for a password when ssh&#039;ing which can lead to security problems.&lt;br /&gt;
&lt;br /&gt;
This will produce two files, &#039;&#039;&#039;id_dsa&#039;&#039;&#039; and &#039;&#039;&#039;id_dsa.pub&#039;&#039;&#039;, the private and public keys respectively.  Once you&#039;ve created the keys, you will need to put them into place as follows:&lt;br /&gt;
&lt;br /&gt;
  # mkdir ~/.ssh&lt;br /&gt;
  # chmod 700 ~/.ssh&lt;br /&gt;
  # mv id_dsa ~/.ssh&lt;br /&gt;
  # chmod 600 ~/.ssh/id_dsa&lt;br /&gt;
  # touch ~/.ssh/authorized_keys2&lt;br /&gt;
  # chmod 600 ~/.ssh/authorized_keys2&lt;br /&gt;
  # cat id_dsa.pub &amp;gt;&amp;gt; authorized_keys2&lt;br /&gt;
  # rm id_dsa.pub&lt;br /&gt;
&lt;br /&gt;
It is &#039;&#039;&#039;very&#039;&#039;&#039; important that you keep your private key secure!  Ensure that it is chmod&#039;d to 600 and that you do not put it anywhere visible to other users!&lt;br /&gt;
&lt;br /&gt;
If you did not select a passphrase when you generated your keys, you can now ssh without a password.  If you did select a passphrase, you will need to activate the keys as follows:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent [SHELL]&lt;br /&gt;
  # ssh-add -t [TIME]&lt;br /&gt;
&lt;br /&gt;
In this case, &amp;quot;[SHELL]&amp;quot; is your preferred shell and &amp;quot;[TIME]&amp;quot; is the amount of time you&#039;d like the key to be active in seconds.  So, the following would start a bash shell with passwordless ssh active for 30 minutes:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent bash&lt;br /&gt;
  # ssh-add -t 1800&lt;br /&gt;
&lt;br /&gt;
You will be prompted for your passphrase and, when entered correctly, you will be able to ssh without entering a password.&lt;br /&gt;
&lt;br /&gt;
To disable this functionality, simply delete your private key file (&#039;&#039;&#039;~/.ssh/id_dsa&#039;&#039;&#039;) and remove the public key from your &#039;&#039;&#039;~/.ssh/authorized_keys2&#039;&#039;&#039; file.&lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
[http://www.openssh.org/ OpenSSH]&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/windows.html Windows Clients]&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3250</id>
		<title>SecureShell</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=SecureShell&amp;diff=3250"/>
		<updated>2010-05-04T21:36:29Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Passwordless SSH with SSH Keys */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Secure Shell (or [http://en.wikipedia.org/wiki/Secure_Shell SSH]) is a network protocol allowing two computers to exchange data securely over an insecure network.  By default use of SSH brings the user to a terminal, but the protocol can be used for other types of data transfer such as [[SFTP]] and [[SCP]].&lt;br /&gt;
&lt;br /&gt;
==Connecting to an SSH Server==&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]].&lt;br /&gt;
 # ssh bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
This will give you access to a terminal on any one of the [[OpenLAB]] servers.  Note that by default you will not have access to applications that require X11 to run.&lt;br /&gt;
&lt;br /&gt;
On Windows XP or Vista hosts there are no SFTP clients installed by default.  Users can install either which will enable SSH and SFTP access.&lt;br /&gt;
&lt;br /&gt;
* [http://www.chiark.greenend.org.uk/~sgtatham/putty/ PuTTY]&lt;br /&gt;
* [http://ttssh2.sourceforge.jp/ ttssh2]&lt;br /&gt;
&lt;br /&gt;
Alternatively, all users can use the UMIACS Intranet SFTP Web Applet located [https://intranet.umiacs.umd.edu/ssh/ here] without installing any additional software.&lt;br /&gt;
&lt;br /&gt;
==X11 Forwarding==&lt;br /&gt;
By default, SSH only gives the user shell access to a host.  Enabling X11 Forwarding allows users to run applications with Graphical User Interfaces.&lt;br /&gt;
&lt;br /&gt;
Under RedHat Linux 3, 4, and 5, and Mac OS X, the following command from a terminal will connect a client computer to the UMIACS [[OpenLAB]] using X11 Forwarding.&lt;br /&gt;
 # ssh &#039;&#039;&#039;-X&#039;&#039;&#039; bkirz@openlab.umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note:&#039;&#039;&#039; Mac users must have X11 installed in their systems for X11 forwarding to work.  This can be checked by looking for X11.app in /Applications/Utilities.  You can find the installer [http://www.apple.com/support/downloads/x11formacosx.html here].&lt;br /&gt;
&lt;br /&gt;
Windows users can enable X11 forwarding on UMIACS desktops by using cygwin to ssh -X.&lt;br /&gt;
If you do not have Cygwin, you will need to forward X through Xming.&lt;br /&gt;
First, enable X forwarding on your secure ssh client. The option is under tunneling in the ssh client settings. This only has to be done once.&lt;br /&gt;
&lt;br /&gt;
[[Image:sshXForward.jpg]]&lt;br /&gt;
&lt;br /&gt;
Next, click save in the main ssh appication window to save this setting.&lt;br /&gt;
&lt;br /&gt;
After this has been done, every time you want to use X forwarding, you need to make sure Xming has been started (it will appear in your task tray) through the start menu programs.&lt;br /&gt;
Now, you will be able to use Xwindow programs from your ssh client.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that the UMIACS Intranet SFTP Web Applet does &#039;&#039;not&#039;&#039; allow X11 Forwarding.&lt;br /&gt;
&lt;br /&gt;
==SSH Tunneling==&lt;br /&gt;
&lt;br /&gt;
You can tunnel one or more ports through an SSH connection such that your packets will look like they are coming from the host you are tunneling to.   This is helpful for services that you would be normally blocked by a firewall.&lt;br /&gt;
&lt;br /&gt;
Please see the [[SecureShellTunneling]] page for more information.&lt;br /&gt;
&lt;br /&gt;
==Passwordless SSH with SSH Keys==&lt;br /&gt;
&lt;br /&gt;
There are some situations where it is important to be able to ssh without entering a password.  This is mostly required when working in clusters.  This is done using ssh keys.  Instead of authenticating with a password, ssh can use a pre-defined set of encryption keys to establish an authorized connection.  To setup passwordless ssh, do the following.&lt;br /&gt;
&lt;br /&gt;
First, create an ssh key pair:&lt;br /&gt;
&lt;br /&gt;
  # ssh-keygen -t dsa&lt;br /&gt;
&lt;br /&gt;
The command will prompt you for a passphrase.  If you use a password, you will need to enter it at the beginning of your work session.  This is preferable as it is more secure but may cause problems for some clustered work, such as TORQUE/PBS cluster.  If you simply hit &#039;&#039;&#039;[enter]&#039;&#039;&#039;, you will never be prompted for a password when ssh&#039;ing which can lead to security problems.&lt;br /&gt;
&lt;br /&gt;
This will produce two files, &#039;&#039;&#039;id_dsa&#039;&#039;&#039; and &#039;&#039;&#039;id_dsa.pub&#039;&#039;&#039;, the private and public keys respectively.  Once you&#039;ve created the keys, you will need to put them into place as follows:&lt;br /&gt;
&lt;br /&gt;
  # mkdir ~/.ssh&lt;br /&gt;
  # chmod 700 ~/.ssh&lt;br /&gt;
  # mv id_dsa ~/.ssh&lt;br /&gt;
  # chmod 600 ~/.ssh/id_dsa&lt;br /&gt;
  # touch ~/.ssh/authorized_keys2&lt;br /&gt;
  # chmod 600 ~/.ssh/authorized_keys2&lt;br /&gt;
  # cat id_dsa.pub &amp;gt;&amp;gt; authorized_keys2&lt;br /&gt;
  # rm id_dsa.pub&lt;br /&gt;
&lt;br /&gt;
It is &#039;&#039;&#039;very&#039;&#039;&#039; important that you keep your private key secure!  Ensure that it is chmod&#039;d to 600 and that you do not put it anywhere visible to other users!&lt;br /&gt;
&lt;br /&gt;
If you did not select a passphrase when you generated your keys, you can now ssh without a password.  If you did select a passphrase, you will need to activate the keys as follows:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent [SHELL]&lt;br /&gt;
  # ssh-add -t [TIME]&lt;br /&gt;
&lt;br /&gt;
In this case, &amp;quot;[SHELL]&amp;quot; is your preferred shell and &amp;quot;[TIME]&amp;quot; is the amount of time you&#039;d like the key to be active in seconds.  So, the following would start a bash shell with passwordless ssh active for 30 minutes:&lt;br /&gt;
&lt;br /&gt;
  # ssh-agent bash&lt;br /&gt;
  # ssh-add -t 1800&lt;br /&gt;
&lt;br /&gt;
You will be prompted for your passphrase and, when entered correctly, you will be able to ssh without entering a password.&lt;br /&gt;
&lt;br /&gt;
To disable this functionality, simply delete your private key file (&#039;&#039;&#039;~/.ssh/id_dsa&#039;&#039;&#039;) and remove the public key from your &#039;&#039;&#039;~/.ssh/authorized_keys2&#039;&#039;&#039; file.&lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
[http://www.openssh.org/ OpenSSH]&lt;br /&gt;
&lt;br /&gt;
[http://www.openssh.com/windows.html Windows Clients]&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=3116</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=3116"/>
		<updated>2010-03-12T16:46:09Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* ONStor Upgrade Mon March 1st 2010 8pm-12am */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
==Anouncements==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;&lt;br /&gt;
===UMIACS Help Desk Closed During Spring Break===&lt;br /&gt;
The UMIACS Help Desk will be closed from Monday the 15th to Thursday 18th along with the rest of the University. We will be opening back up on Friday the 19th.&lt;br /&gt;
&lt;br /&gt;
===CLIP File System Downtime, March 8===&lt;br /&gt;
&lt;br /&gt;
Monday &amp;lt;br&amp;gt;&lt;br /&gt;
March 8&amp;lt;br&amp;gt;&lt;br /&gt;
10am&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
corpora&amp;lt;br&amp;gt;&lt;br /&gt;
gale2&amp;lt;br&amp;gt;&lt;br /&gt;
trec&amp;lt;br&amp;gt;&lt;br /&gt;
chinese_parsing&amp;lt;br&amp;gt;&lt;br /&gt;
spinn3r&amp;lt;br&amp;gt;&lt;br /&gt;
lm&amp;lt;br&amp;gt;&lt;br /&gt;
galep3eval&amp;lt;br&amp;gt;&lt;br /&gt;
clueweb&amp;lt;br&amp;gt;&lt;br /&gt;
mei&amp;lt;br&amp;gt;&lt;br /&gt;
wwwtides&amp;lt;br&amp;gt;&lt;br /&gt;
www&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==CBCB Opteron Upgrades==&lt;br /&gt;
the following hosts will be unavailable due to an OS upgrade from RHEL4-&amp;gt;RHEL5.&lt;br /&gt;
&lt;br /&gt;
beech and larch: Tuesday, March 9th at 10am --&amp;gt;Complete&lt;br /&gt;
&lt;br /&gt;
sycamore and hemlock: Friday, March 12th at 10am&lt;br /&gt;
&lt;br /&gt;
and after spring break --&lt;br /&gt;
&lt;br /&gt;
privet and bayberry: Tuesday, March 23rd at 10am&lt;br /&gt;
&lt;br /&gt;
please note that apart from the nodes being down, the /tmp directories will also be deleted.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Technical Reference==&lt;br /&gt;
&lt;br /&gt;
Welcome to UMIACS Wiki.  This is the main place to find documentation and information about your account and  the technical services that UMIACS offers.  If this is your first time please start here [[GettingStarted| Getting Started]].&lt;br /&gt;
&lt;br /&gt;
We provide many  [[CoreServices|Core Services]] which include [[EMail]], [[Backups]] and [[VPN]].&lt;br /&gt;
&lt;br /&gt;
We have lots of specific [[LabFacilities|Lab Facilities]] that you may be interested in.&lt;br /&gt;
&lt;br /&gt;
Please check here if you are interested in [[OrderingEquipment|Ordering Equipment]].&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=3115</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=3115"/>
		<updated>2010-03-12T16:45:23Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* UMIACS NFS Problems */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
==Anouncements==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;&lt;br /&gt;
===UMIACS Help Desk Closed During Spring Break===&lt;br /&gt;
The UMIACS Help Desk will be closed from Monday the 15th to Thursday 18th along with the rest of the University. We will be opening back up on Friday the 19th.&lt;br /&gt;
&lt;br /&gt;
===CLIP File System Downtime, March 8===&lt;br /&gt;
&lt;br /&gt;
Monday &amp;lt;br&amp;gt;&lt;br /&gt;
March 8&amp;lt;br&amp;gt;&lt;br /&gt;
10am&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
corpora&amp;lt;br&amp;gt;&lt;br /&gt;
gale2&amp;lt;br&amp;gt;&lt;br /&gt;
trec&amp;lt;br&amp;gt;&lt;br /&gt;
chinese_parsing&amp;lt;br&amp;gt;&lt;br /&gt;
spinn3r&amp;lt;br&amp;gt;&lt;br /&gt;
lm&amp;lt;br&amp;gt;&lt;br /&gt;
galep3eval&amp;lt;br&amp;gt;&lt;br /&gt;
clueweb&amp;lt;br&amp;gt;&lt;br /&gt;
mei&amp;lt;br&amp;gt;&lt;br /&gt;
wwwtides&amp;lt;br&amp;gt;&lt;br /&gt;
www&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==CBCB Opteron Upgrades==&lt;br /&gt;
the following hosts will be unavailable due to an OS upgrade from RHEL4-&amp;gt;RHEL5.&lt;br /&gt;
&lt;br /&gt;
beech and larch: Tuesday, March 9th at 10am --&amp;gt;Complete&lt;br /&gt;
&lt;br /&gt;
sycamore and hemlock: Friday, March 12th at 10am&lt;br /&gt;
&lt;br /&gt;
and after spring break --&lt;br /&gt;
&lt;br /&gt;
privet and bayberry: Tuesday, March 23rd at 10am&lt;br /&gt;
&lt;br /&gt;
please note that apart from the nodes being down, the /tmp directories will also be deleted.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===ONStor Upgrade Mon March 1st 2010 8pm-12am===	 &lt;br /&gt;
Staff will be upgrading the last of our 2 ONStor clusters which provide NFS and CIFS file service to many of our labs and centers. Because they are clustered and highly available we expect to be able to upgrade the cluster without any downtime. There may be however some short hiccups when we fail servers over they should just show up as delays in file service. The following are the virtual servers that will be affected by this upgrade:&lt;br /&gt;
&lt;br /&gt;
* umiacsfs02 (nfshomes)&lt;br /&gt;
* umiacsfs01 (legacyfs file systems)&lt;br /&gt;
* umiacsfs00 (/usr/local and /opt file systems)&lt;br /&gt;
* umiacs-webftp (ftp and web trees)&lt;br /&gt;
* clampfs00&lt;br /&gt;
* lccdfs00&lt;br /&gt;
&lt;br /&gt;
If you have any questions please email [mailto:staff@umiacs.umd.edu staff@umiacs.umd.edu]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please see our [[HelpDesk]] for additional support.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Technical Reference==&lt;br /&gt;
&lt;br /&gt;
Welcome to UMIACS Wiki.  This is the main place to find documentation and information about your account and  the technical services that UMIACS offers.  If this is your first time please start here [[GettingStarted| Getting Started]].&lt;br /&gt;
&lt;br /&gt;
We provide many  [[CoreServices|Core Services]] which include [[EMail]], [[Backups]] and [[VPN]].&lt;br /&gt;
&lt;br /&gt;
We have lots of specific [[LabFacilities|Lab Facilities]] that you may be interested in.&lt;br /&gt;
&lt;br /&gt;
Please check here if you are interested in [[OrderingEquipment|Ordering Equipment]].&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=3056</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=3056"/>
		<updated>2010-02-02T18:04:20Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Openlab Cluster TORQUE/MAUI upgrade */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
==Anouncements==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;&lt;br /&gt;
===Openlab Cluster TORQUE/MAUI upgrade===&lt;br /&gt;
&lt;br /&gt;
openlab TORQUE/MAUI system will be down from 12:30 - 2:30pm on Tuesday, 2/2/2010 for the upgrading.  We will  upgrade TORUQE/MAUI to our latest version.&lt;br /&gt;
&lt;br /&gt;
===CLIP File System Downtime===	 &lt;br /&gt;
	 &lt;br /&gt;
Monday &amp;lt;br&amp;gt;	 &lt;br /&gt;
Feburary 1 &amp;lt;br&amp;gt;	 &lt;br /&gt;
10:00am	 &lt;br /&gt;
	 &lt;br /&gt;
enron2 &amp;lt;br&amp;gt;&lt;br /&gt;
mono-para &amp;lt;br&amp;gt;&lt;br /&gt;
nsf-cri-ii &amp;lt;br&amp;gt;&lt;br /&gt;
liwc &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please see our [[HelpDesk]] for additional support.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Technical Reference==&lt;br /&gt;
&lt;br /&gt;
Welcome to UMIACS Wiki.  This is the main place to find documentation and information about your account and  the technical services that UMIACS offers.  If this is your first time please start here [[GettingStarted| Getting Started]].&lt;br /&gt;
&lt;br /&gt;
We provide many  [[CoreServices|Core Services]] which include [[EMail]], [[Backups]] and [[VPN]].&lt;br /&gt;
&lt;br /&gt;
We have lots of specific [[LabFacilities|Lab Facilities]] that you may be interested in.&lt;br /&gt;
&lt;br /&gt;
Please check here if you are interested in [[OrderingEquipment|Ordering Equipment]].&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=3055</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=3055"/>
		<updated>2010-02-02T18:04:09Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Anouncements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
==Anouncements==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;&lt;br /&gt;
===Openlab Cluster TORQUE/MAUI upgrade===&lt;br /&gt;
&lt;br /&gt;
openlab TORQUE/MAUI system will down from 12:30 - 2:30pm on Tuesday, 2/2/2010 for the upgrading.  We will  upgrade TORUQE/MAUI to our latest version.&lt;br /&gt;
&lt;br /&gt;
===CLIP File System Downtime===	 &lt;br /&gt;
	 &lt;br /&gt;
Monday &amp;lt;br&amp;gt;	 &lt;br /&gt;
Feburary 1 &amp;lt;br&amp;gt;	 &lt;br /&gt;
10:00am	 &lt;br /&gt;
	 &lt;br /&gt;
enron2 &amp;lt;br&amp;gt;&lt;br /&gt;
mono-para &amp;lt;br&amp;gt;&lt;br /&gt;
nsf-cri-ii &amp;lt;br&amp;gt;&lt;br /&gt;
liwc &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please see our [[HelpDesk]] for additional support.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Technical Reference==&lt;br /&gt;
&lt;br /&gt;
Welcome to UMIACS Wiki.  This is the main place to find documentation and information about your account and  the technical services that UMIACS offers.  If this is your first time please start here [[GettingStarted| Getting Started]].&lt;br /&gt;
&lt;br /&gt;
We provide many  [[CoreServices|Core Services]] which include [[EMail]], [[Backups]] and [[VPN]].&lt;br /&gt;
&lt;br /&gt;
We have lots of specific [[LabFacilities|Lab Facilities]] that you may be interested in.&lt;br /&gt;
&lt;br /&gt;
Please check here if you are interested in [[OrderingEquipment|Ordering Equipment]].&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=2982</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=2982"/>
		<updated>2010-01-27T02:57:05Z</updated>

		<summary type="html">&lt;p&gt;Xhe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
==Anouncements==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please see our [[HelpDesk]] for additional support.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Technical Reference==&lt;br /&gt;
&lt;br /&gt;
Welcome to UMIACS Wiki.  This is the main place to find documentation and information about your account and  the technical services that UMIACS offers.  If this is your first time please start here [[GettingStarted| Getting Started]].&lt;br /&gt;
&lt;br /&gt;
We provide many  [[CoreServices|Core Services]] which include [[EMail]], [[Backups]] and [[VPN]].&lt;br /&gt;
&lt;br /&gt;
We have lots of specific [[LabFacilities|Lab Facilities]] that you may be interested in.&lt;br /&gt;
&lt;br /&gt;
Please check here if you are interested in [[OrderingEquipment|Ordering Equipment]].&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=2981</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=2981"/>
		<updated>2010-01-27T02:56:52Z</updated>

		<summary type="html">&lt;p&gt;Xhe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
==Anouncements==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please see our [[HelpDesk]] for additional support.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Technical Reference==&lt;br /&gt;
&lt;br /&gt;
Welcome to UMIACS Wiki.  This is the main place to find documentation and information about your account and  the technical services that UMIACS offers.  If this is your first time please start here [[GettingStarted| Getting Started]].&lt;br /&gt;
&lt;br /&gt;
We provide many  more [[CoreServices|Core Services]] which include [[EMail]], [[Backups]] and [[VPN]].&lt;br /&gt;
&lt;br /&gt;
We have lots of specific [[LabFacilities|Lab Facilities]] that you may be interested in.&lt;br /&gt;
&lt;br /&gt;
Please check here if you are interested in [[OrderingEquipment|Ordering Equipment]].&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=2980</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=2980"/>
		<updated>2010-01-27T02:56:33Z</updated>

		<summary type="html">&lt;p&gt;Xhe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
==Anouncements==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please see our [[HelpDesk]] for additional support.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Technical Reference==&lt;br /&gt;
&lt;br /&gt;
Welcome to UMIACS Wiki.  This is the main place to find documentation and information about your account and  the technical services that UMIACS offers.  If this is your first time please start here [[GettingStarted| Getting Started]].&lt;br /&gt;
&lt;br /&gt;
We provide many [[CoreServices|Core Services]] which include [[EMail]], [[Backups]] and [[VPN]].&lt;br /&gt;
&lt;br /&gt;
We have lots of specific [[LabFacilities|Lab Facilities]] that you may be interested in.&lt;br /&gt;
&lt;br /&gt;
Please check here if you are interested in [[OrderingEquipment|Ordering Equipment]].&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=HPC&amp;diff=2927</id>
		<title>HPC</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=HPC&amp;diff=2927"/>
		<updated>2010-01-26T15:53:04Z</updated>

		<summary type="html">&lt;p&gt;Xhe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[ClusterGuide|Torque/Maui Cluster Guide]]&lt;br /&gt;
* [[ CondorGuide | Condor Guide]]&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=HPC&amp;diff=2915</id>
		<title>HPC</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=HPC&amp;diff=2915"/>
		<updated>2010-01-13T17:03:22Z</updated>

		<summary type="html">&lt;p&gt;Xhe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[ClusterGuide|Torque/Maui Cluster Guide]]&lt;br /&gt;
* [[ Condor | Condor Guide]]&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=HPC&amp;diff=2914</id>
		<title>HPC</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=HPC&amp;diff=2914"/>
		<updated>2010-01-13T17:02:35Z</updated>

		<summary type="html">&lt;p&gt;Xhe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[ClusterGuide|Torque/Maui Cluster Guide]]&lt;br /&gt;
* [[ | Condor Guide]]&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=2913</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=2913"/>
		<updated>2010-01-13T15:02:57Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Openlab cluster maintenance */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
==Anouncements==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;&lt;br /&gt;
===Openlab cluster maintenance===&lt;br /&gt;
&lt;br /&gt;
Openlab cluster is scheduled to have maintenance from 2:00pm - 3:30pm on Wednesday 1/13/2010.   During the time, the cluster may not available all the time.&lt;br /&gt;
&lt;br /&gt;
===CLIP File System Downtime===&lt;br /&gt;
&lt;br /&gt;
Tuesday &amp;lt;br&amp;gt;&lt;br /&gt;
January 19 &amp;lt;br&amp;gt;&lt;br /&gt;
10:00am&lt;br /&gt;
&lt;br /&gt;
ace2 &amp;lt;br&amp;gt;&lt;br /&gt;
trecindex &amp;lt;br&amp;gt;&lt;br /&gt;
malach-ldc &amp;lt;br&amp;gt;&lt;br /&gt;
spinn3r &amp;lt;br&amp;gt;&lt;br /&gt;
weps &amp;lt;br&amp;gt;&lt;br /&gt;
galep3eval &amp;lt;br&amp;gt;&lt;br /&gt;
hsd &amp;lt;br&amp;gt;&lt;br /&gt;
enron-corpus &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Do not turn off supported computers over break ===&lt;br /&gt;
Recently Someone from FM sent a message to the campus community encouraging people to turn off their computers before leaving for the Holiday Break.&lt;br /&gt;
&lt;br /&gt;
However The UMIACS Technical staff would like to request that you not do so&lt;br /&gt;
that your computers can continue to get backed up, get updates and receive&lt;br /&gt;
the latest virus protections.&lt;br /&gt;
&lt;br /&gt;
If you have any questions or concerns about this, please send mail to the&lt;br /&gt;
technical staff (staff@umiacs.umd.edu).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please see our [[HelpDesk]] for additional support.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Technical Reference==&lt;br /&gt;
&lt;br /&gt;
Welcome to UMIACS Wiki.  This is the main place to find documentation and information about your account and the technical services that UMIACS offers.  If this is your first time please start here [[GettingStarted| Getting Started]].&lt;br /&gt;
&lt;br /&gt;
We provide many [[CoreServices|Core Services]] which include [[EMail]], [[Backups]] and [[VPN]].&lt;br /&gt;
&lt;br /&gt;
We have lots of specific [[LabFacilities|Lab Facilities]] that you may be interested in.&lt;br /&gt;
&lt;br /&gt;
Please check here if you are interested in [[OrderingEquipment|Ordering Equipment]].&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=2912</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=2912"/>
		<updated>2010-01-13T14:59:51Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Anouncements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
==Anouncements==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;&lt;br /&gt;
===Openlab cluster maintenance===&lt;br /&gt;
&lt;br /&gt;
Openlab cluster is scheduled to have maintenance from 10:00am - 2:00pm on Wednesday 1/13/2010.   During the time, the cluster may not available all the time.&lt;br /&gt;
&lt;br /&gt;
===CLIP File System Downtime===&lt;br /&gt;
&lt;br /&gt;
Tuesday &amp;lt;br&amp;gt;&lt;br /&gt;
January 19 &amp;lt;br&amp;gt;&lt;br /&gt;
10:00am&lt;br /&gt;
&lt;br /&gt;
ace2 &amp;lt;br&amp;gt;&lt;br /&gt;
trecindex &amp;lt;br&amp;gt;&lt;br /&gt;
malach-ldc &amp;lt;br&amp;gt;&lt;br /&gt;
spinn3r &amp;lt;br&amp;gt;&lt;br /&gt;
weps &amp;lt;br&amp;gt;&lt;br /&gt;
galep3eval &amp;lt;br&amp;gt;&lt;br /&gt;
hsd &amp;lt;br&amp;gt;&lt;br /&gt;
enron-corpus &amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Do not turn off supported computers over break ===&lt;br /&gt;
Recently Someone from FM sent a message to the campus community encouraging people to turn off their computers before leaving for the Holiday Break.&lt;br /&gt;
&lt;br /&gt;
However The UMIACS Technical staff would like to request that you not do so&lt;br /&gt;
that your computers can continue to get backed up, get updates and receive&lt;br /&gt;
the latest virus protections.&lt;br /&gt;
&lt;br /&gt;
If you have any questions or concerns about this, please send mail to the&lt;br /&gt;
technical staff (staff@umiacs.umd.edu).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please see our [[HelpDesk]] for additional support.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Technical Reference==&lt;br /&gt;
&lt;br /&gt;
Welcome to UMIACS Wiki.  This is the main place to find documentation and information about your account and the technical services that UMIACS offers.  If this is your first time please start here [[GettingStarted| Getting Started]].&lt;br /&gt;
&lt;br /&gt;
We provide many [[CoreServices|Core Services]] which include [[EMail]], [[Backups]] and [[VPN]].&lt;br /&gt;
&lt;br /&gt;
We have lots of specific [[LabFacilities|Lab Facilities]] that you may be interested in.&lt;br /&gt;
&lt;br /&gt;
Please check here if you are interested in [[OrderingEquipment|Ordering Equipment]].&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=2867</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=2867"/>
		<updated>2009-11-07T03:00:15Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Anouncements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
==Anouncements==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;  &lt;br /&gt;
For the next two weeks, we would like to schedule UMIACS condor service down time to migrate UMIACS&lt;br /&gt;
condor system to the latest stable version, upgrade condor server to newer Operating system    &lt;br /&gt;
with the latest condor version.  This will be implemented in stages for different clusters and&lt;br /&gt;
lab machines.&lt;br /&gt;
&lt;br /&gt;
Here is the planed schedule for the migration:&lt;br /&gt;
&lt;br /&gt;
 Monday 11/9,  we will migrate condor on openlab machines, openlab cluster.&lt;br /&gt;
 Tuesday 11/10, migrate condor on rdec cluster&lt;br /&gt;
 Wednesday 11/11, migrate condor system on lccd cluster,&lt;br /&gt;
 Friday, 11/13, migrate condor on wren cluster&lt;br /&gt;
 Monday 11/16, gene cluster&lt;br /&gt;
 Tuesday, 11/17, lab machines: nara, bio, clip&lt;br /&gt;
 Wednesday, 11/18, condor server migration.  During server migration, we will setup &lt;br /&gt;
 a backup server for condor pool, so users can still submit jobs to condor pool.&lt;br /&gt;
&lt;br /&gt;
Please note that  the scheduled machines will be out of condor pool during the migration.                   &lt;br /&gt;
&lt;br /&gt;
If the schedule causes any problems, please let us know.&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please see our [[HelpDesk]] for additional support.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Technical Reference==&lt;br /&gt;
&lt;br /&gt;
Welcome to UMIACS Wiki.  This is the main place to find documentation and information about your account and the technical services that UMIACS offers.  If this is your first time please start here [[GettingStarted| Getting Started]].&lt;br /&gt;
&lt;br /&gt;
We provide many [[CoreServices|Core Services]] which include [[EMail]], [[Backups]] and [[VPN]].&lt;br /&gt;
&lt;br /&gt;
We have lots of specific [[LabFacilities|Lab Facilities]] that you may be interested in.&lt;br /&gt;
&lt;br /&gt;
Please check here if you are interested in [[OrderingEquipment|Ordering Equipment]].&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=2866</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=2866"/>
		<updated>2009-11-07T02:41:46Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Anouncements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
==Anouncements==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;  &lt;br /&gt;
For the next two weeks, we would like to schedule UMIACS condor service down time to migrate UMIACS&lt;br /&gt;
condor system to the latest stable version, upgrade condor server to newer Operating system    &lt;br /&gt;
with the latest condor version.  This will be implenmented in stages for different clusters and&lt;br /&gt;
lab machines.&lt;br /&gt;
&lt;br /&gt;
Here is the planed schedule for the migration:&lt;br /&gt;
&lt;br /&gt;
 Monday 11/9,  we will migrate condor on openlab machines, openlab cluster.&lt;br /&gt;
 Tuesday 11/10, migrate condor on rdec cluster&lt;br /&gt;
 Wednesday 11/11, migrate condor system on lccd cluster,&lt;br /&gt;
 Friday, 11/13, migrate condor on wren cluster&lt;br /&gt;
 Monday 11/16, gene cluster&lt;br /&gt;
 Tuesday, 11/17, lab machines: nara, bio, clip&lt;br /&gt;
 Wednesday, 11/18, condor server migration.  During server migration, we will setup &lt;br /&gt;
 a backup server for condor pool, so users can still submit jobs to condor pool.&lt;br /&gt;
&lt;br /&gt;
Please note that  the scheduled machines will be out of condor pool during the migration.                   &lt;br /&gt;
&lt;br /&gt;
If the schedule causes any problems, please let us know.&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please see our [[HelpDesk]] for additional support.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Technical Reference==&lt;br /&gt;
&lt;br /&gt;
Welcome to UMIACS Wiki.  This is the main place to find documentation and information about your account and the technical services that UMIACS offers.  If this is your first time please start here [[GettingStarted| Getting Started]].&lt;br /&gt;
&lt;br /&gt;
We provide many [[CoreServices|Core Services]] which include [[EMail]], [[Backups]] and [[VPN]].&lt;br /&gt;
&lt;br /&gt;
We have lots of specific [[LabFacilities|Lab Facilities]] that you may be interested in.&lt;br /&gt;
&lt;br /&gt;
Please check here if you are interested in [[OrderingEquipment|Ordering Equipment]].&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=2865</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=2865"/>
		<updated>2009-11-07T02:41:22Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Anouncements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
==Anouncements==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;  &lt;br /&gt;
For the next two weeks, we would like to schedule UMIACS condor service down time to migrate UMIACS&lt;br /&gt;
condor system to the latest stable version, upgrade condor server to newer Operating system    &lt;br /&gt;
with the latest condor version.  This will be implenmented in stages for different clusters and&lt;br /&gt;
lab machines.&lt;br /&gt;
&lt;br /&gt;
Here is the planed schedule for the migration:&lt;br /&gt;
&lt;br /&gt;
 Monday 11/9,  we will migrate condor on openlab machines, openlab cluster.&lt;br /&gt;
 Tuesday 11/10, migrate condor on rdec cluster&lt;br /&gt;
 Wednesday 11/11, migrate condor system on lccd cluster,&lt;br /&gt;
 Friday, 11/13, migrate condor on wren cluster&lt;br /&gt;
 Monday 11/16, gene cluster&lt;br /&gt;
 Tuesday, 11/17, lab machines: nara, bio, clip&lt;br /&gt;
 Wednesday, 11/18, condor server migration.  During server migration, we will setup a backup server for&lt;br /&gt;
 condor pool, so users can still submit jobs to condor pool.&lt;br /&gt;
&lt;br /&gt;
Please note that  the scheduled machines will be out of condor pool during the migration.                   &lt;br /&gt;
&lt;br /&gt;
If the schedule causes any problems, please let us know.&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please see our [[HelpDesk]] for additional support.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Technical Reference==&lt;br /&gt;
&lt;br /&gt;
Welcome to UMIACS Wiki.  This is the main place to find documentation and information about your account and the technical services that UMIACS offers.  If this is your first time please start here [[GettingStarted| Getting Started]].&lt;br /&gt;
&lt;br /&gt;
We provide many [[CoreServices|Core Services]] which include [[EMail]], [[Backups]] and [[VPN]].&lt;br /&gt;
&lt;br /&gt;
We have lots of specific [[LabFacilities|Lab Facilities]] that you may be interested in.&lt;br /&gt;
&lt;br /&gt;
Please check here if you are interested in [[OrderingEquipment|Ordering Equipment]].&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=2864</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=Main_Page&amp;diff=2864"/>
		<updated>2009-11-07T02:40:43Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* Anouncements */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
==Anouncements==&lt;br /&gt;
&amp;lt;startFeed /&amp;gt;  &lt;br /&gt;
For the next two weeks, we would like to schedule UMIACS condor service down time to migrate UMIACS&lt;br /&gt;
condor system to the latest stable version, upgrade condor server to newer Operating system    &lt;br /&gt;
with the latest condor version.  This will be implenmented in stages for different clusters and&lt;br /&gt;
lab machines.&lt;br /&gt;
&lt;br /&gt;
Here is the planed schedule for the migration:&lt;br /&gt;
&lt;br /&gt;
 Monday 11/9,  we will migrate condor on openlab machines, openlab cluster.&lt;br /&gt;
 Tuesday 11/10, migrate condor on rdec cluster&lt;br /&gt;
 Wednesday 11/11, migrate condor system on lccd cluster,&lt;br /&gt;
 Friday, 11/13, migrate condor on wren cluster&lt;br /&gt;
 Monday 11/16, gene cluster&lt;br /&gt;
 Tuesday, 11/17, lab machines: nara, bio, clip&lt;br /&gt;
 Wednesday, 11/18, condor server migration.  During server migration, we will setup a backup server for condor pool, so users can still submit jobs to condor pool.&lt;br /&gt;
&lt;br /&gt;
Please note that  the scheduled machines will be out of condor pool during the migration.                   &lt;br /&gt;
&lt;br /&gt;
If the schedule causes any problems, please let us know.&lt;br /&gt;
&amp;lt;endFeed /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Please see our [[HelpDesk]] for additional support.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==Technical Reference==&lt;br /&gt;
&lt;br /&gt;
Welcome to UMIACS Wiki.  This is the main place to find documentation and information about your account and the technical services that UMIACS offers.  If this is your first time please start here [[GettingStarted| Getting Started]].&lt;br /&gt;
&lt;br /&gt;
We provide many [[CoreServices|Core Services]] which include [[EMail]], [[Backups]] and [[VPN]].&lt;br /&gt;
&lt;br /&gt;
We have lots of specific [[LabFacilities|Lab Facilities]] that you may be interested in.&lt;br /&gt;
&lt;br /&gt;
Please check here if you are interested in [[OrderingEquipment|Ordering Equipment]].&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=LabFacilities&amp;diff=2625</id>
		<title>LabFacilities</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=LabFacilities&amp;diff=2625"/>
		<updated>2009-09-11T01:36:46Z</updated>

		<summary type="html">&lt;p&gt;Xhe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[OpenLAB]]&lt;br /&gt;
* [[CBCB|Center for Bioinformatics and Computational Biology]] (CBCB) http://www.cbcb.umd.edu&lt;br /&gt;
* [[CDIG|Center for Digital International Government]] (CDIG) http://www.umiacs.umd.edu/research/CDIG&lt;br /&gt;
* [[CFAR|Center for Automation Research]] (CFAR) http://www.cfar.umd.edu&lt;br /&gt;
* [[CHESS|Center for Human Enhanced Secure Systems]] (CHESS) http://chess.umiacs.umd.edu/&lt;br /&gt;
* [[CLIP|Computational Linguistics and Information Processing]] (CLIP) http://www.umiacs.umd.edu/research/CLIP&lt;br /&gt;
* [[CVL|Computer Vision Laboratory]] (CVL) http://www.cfar.umd.edu/cvl/&lt;br /&gt;
* [[DSSL|Distributed Systems Software Laboratory]] (DSSL) http://www.cs.umd.edu/projects/dssl&lt;br /&gt;
* [[FCMD|Fraunhofer Center at Maryland]] (FCMD) http://fc-md.umd.edu/&lt;br /&gt;
* [[GLCF|Global Land Cover Facility]] (GLCF) http://www.glcf.umiacs.umd.edu&lt;br /&gt;
* [[GVIL|Graphics and Visual Informatics Laboratory]] (GVIL) http://www.cs.umd.edu/gvil/&lt;br /&gt;
* [[HCIL|Human Computer Interaction Laboratory]] (HCIL) http://www.cs.umd.edu/projects/hcil&lt;br /&gt;
* [[KECK|Keck Lab for the Comp. Modeling of Visual Movement]] (KECK) http://www.umiacs.umd.edu/%7Elsd/kecklab.html&lt;br /&gt;
* [[LAMP|Language and Media Processing Laboratory]] (LAMP) http://lamp.cfar.umd.edu&lt;br /&gt;
* [[LCCD|Laboratory for Computational Cultural Dynamics]] (LCCD) http://www.umiacs.umd.edu/research/LCCD/&lt;br /&gt;
* [[LPDC|Laboratory for Parallel and Distributed Computing]] (LPDC) http://www.umiacs.umd.edu/research/LPDC&lt;br /&gt;
* [[MIND|Maryland Information and Network Dynamics Lab]] (MIND) http://mindlab.umd.edu/&lt;br /&gt;
* [[PIRL|Perceptual Interfaces and Reality Laboratory]] (PIRL) http://pirl.umd.edu/&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=HPC&amp;diff=2622</id>
		<title>HPC</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=HPC&amp;diff=2622"/>
		<updated>2009-09-11T01:29:26Z</updated>

		<summary type="html">&lt;p&gt;Xhe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[ClusterGuide|Torque/Maui Cluster Guide]]&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=HPC&amp;diff=2620</id>
		<title>HPC</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=HPC&amp;diff=2620"/>
		<updated>2009-09-11T01:23:53Z</updated>

		<summary type="html">&lt;p&gt;Xhe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[ClusterGuide]] Torque/Maui Cluster Guide&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=CoreServices&amp;diff=2619</id>
		<title>CoreServices</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=CoreServices&amp;diff=2619"/>
		<updated>2009-09-11T01:22:21Z</updated>

		<summary type="html">&lt;p&gt;Xhe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* [[Kerberos|Authentication (UMIACS KRB5/UNIX)]]&lt;br /&gt;
&lt;br /&gt;
* [[ActiveDirectory|Authentication (Active Directory/Windows)]]&lt;br /&gt;
&lt;br /&gt;
* [[EMail]]&lt;br /&gt;
&lt;br /&gt;
* [[Printing]]&lt;br /&gt;
&lt;br /&gt;
* [[MailingLists|Mailing Lists]]&lt;br /&gt;
&lt;br /&gt;
* [[OSSupport|Operating Systems Support]]&lt;br /&gt;
&lt;br /&gt;
* [[NAS|Network Attached Storage]]&lt;br /&gt;
&lt;br /&gt;
* [[Web|Web Services]]&lt;br /&gt;
&lt;br /&gt;
* [[FileTransferProtocol |File Transfer Protocol]]&lt;br /&gt;
&lt;br /&gt;
* [[Subversion|Revision Control (Subversion)]]&lt;br /&gt;
&lt;br /&gt;
* [[Programming|Programming Languages]]&lt;br /&gt;
&lt;br /&gt;
* [[Backups]]&lt;br /&gt;
&lt;br /&gt;
* [[VPN|Virtual Private Networking]]&lt;br /&gt;
&lt;br /&gt;
* [[WinXPRemoteAssist|Windows XP Remote Assistance]]&lt;br /&gt;
&lt;br /&gt;
* [[LocalDataStorage|Local Data Storage]]&lt;br /&gt;
&lt;br /&gt;
* [[HPC|High Performance Computing]]&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2226</id>
		<title>MailmanFAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2226"/>
		<updated>2008-10-01T18:46:40Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* How do I add users to a mailman mailing list? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Is there an easy way to discard all messages waiting to be reviewed?===&lt;br /&gt;
&lt;br /&gt;
If you have a list where non members can post but their messages are moderated, you&#039;ll have to deal with a lot of spam. After sometime, just a small percentage of them will be good posts. &lt;br /&gt;
&lt;br /&gt;
The admindb page has a checkbox that allows you to discard all held messages that are marked Defer.  On heavy lists with lots of spam holds, this makes clearing them much faster.&lt;br /&gt;
&lt;br /&gt;
To make sure that all mail from non-members is automatically deleted, go to the privacy page followed by the sender-filter sub-page.  At the bottom of the page, set to &amp;quot;discard&amp;quot; the value for &amp;quot;Action to take for postings from non-members for which no explicit action is defined.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
On the same page, at the top, you can do the same thing for postings by members (if your list is moderated such that users can&#039;t post)&lt;br /&gt;
&lt;br /&gt;
===How do I turn off HTML messages/attachments?===&lt;br /&gt;
&lt;br /&gt;
On the admin page, go to the Content Filtering section. &lt;br /&gt;
  &lt;br /&gt;
  Change &amp;quot;Should Mailman filter ...&amp;quot; to Yes. &lt;br /&gt;
&lt;br /&gt;
If you leave the rest at default values, including&lt;br /&gt;
&lt;br /&gt;
  Yes for &amp;quot;Should Mailman convert text/html parts to plain text?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
your list will only distribute plain text messages with no attachments.&lt;br /&gt;
&lt;br /&gt;
===How can I post from 2 or more addresses to a &amp;quot;members-only&amp;quot; list?===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re subscribed to a members-only list as USER@umiacs.umd.edu   and accidentally post as USER@cfar.umd.edu, your message will not go through.&lt;br /&gt;
&lt;br /&gt;
The solution is to actually subscribe both addresses to the list, but to disable delivery from all but one of the addresses. So in the above  example, I&#039;d subscribe USER@umiacs.umd.edu and USER@Ccfar.umd.edu, but I would disable delivery to USER@cfar.umd.edu.&lt;br /&gt;
&lt;br /&gt;
You can disable delivery to an address by going to the personal options page for that address and setting &amp;quot;Mail delivery&amp;quot; to &amp;quot;disabled&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
The list manager can disable delivery to an address by going to the membership page and clicking &amp;quot;no mail&amp;quot; nect to the address in question.&lt;br /&gt;
&lt;br /&gt;
===How do I change a member&#039;s password or send them their password?===&lt;br /&gt;
&lt;br /&gt;
Go to the Membership-management page, click the address in question. The page that appears allows you to set a users password or mail them their existing password by clicking on &lt;br /&gt;
  &lt;br /&gt;
  &amp;quot;Email my password to me&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note all the other options you can set for the user here.&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget that members can have their password sent to them anytime they like, by clicking the appropriate button on their personal page. There is no need for you to change their password if they forgettheir password.  They just have to go to&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/LISTNAME/USERNAME%40DOMAINNAME&lt;br /&gt;
&lt;br /&gt;
EG:&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/umiacs/johndoe%40umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
===How can I restrict the list so only authorized persons can post?===&lt;br /&gt;
&lt;br /&gt;
Turn on the moderation flag for all your existing users.  Go to the membership management page, and use the Additional Member Tasks to turn on the mod flag for all users.&lt;br /&gt;
&lt;br /&gt;
Then go to Privacy Options -&amp;gt; Sender filters and set the default_member_moderation flag to Yes so that new users are automatically set as moderated.&lt;br /&gt;
&lt;br /&gt;
Set the member_moderation_action to Reject and add a nice rejection notice text to the following text box.  &lt;br /&gt;
&lt;br /&gt;
  Set the generic_nonmember_action to Reject or Discard.&lt;br /&gt;
&lt;br /&gt;
===How can someone subscribe without my doing anything?===&lt;br /&gt;
&lt;br /&gt;
They just need to go to &lt;br /&gt;
&lt;br /&gt;
  http://lists/mailman/listinfo/LISTNAME&lt;br /&gt;
&lt;br /&gt;
and fill in the form. They can also subscribe/unsubscribe by email by sending to&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-subscribe&lt;br /&gt;
&lt;br /&gt;
or to unsubscribe,&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-unsubscribe&lt;br /&gt;
&lt;br /&gt;
In ALL of the above cases, the user will receive email confirming their action. They need to just reply to the mail for this to take affect.&lt;br /&gt;
&lt;br /&gt;
===How do I unsubscribe users without them getting an unsubscribe message?===&lt;br /&gt;
&lt;br /&gt;
By default, they will not get an unsubscribe message. You need only go to the membership page and click the &amp;quot;unsub&amp;quot; button next to each of their names and press &amp;quot;submit&amp;quot;   or go to the Mass-removal subpage under Membership-management and add all the addresses into the  window and click &amp;quot;submit&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===How do I edit a held message before approving it for the list?===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Use the &amp;quot;forward this message&amp;quot; feature in the admindb page to forward the message to yourself.&lt;br /&gt;
&lt;br /&gt;
* At the same time, discard the original held message. You may want to do this later, after you&#039;re sure the message was properly forwarded to you.&lt;br /&gt;
&lt;br /&gt;
* Edit the message in your mail reader. You should include a notice in the message explaining that the list moderator has edited the message. Please use proper netiquette!&lt;br /&gt;
&lt;br /&gt;
* Resend the message to the list using a Resent-To: header containing the list posting address. Also include an Approved: header containing &lt;br /&gt;
the list&#039;s admin password.&lt;br /&gt;
&lt;br /&gt;
===How do I add users to a mailman mailing list?===&lt;br /&gt;
&lt;br /&gt;
* Login to the mailman mailing list adminstration&#039;s page use your mailman admin password&lt;br /&gt;
&lt;br /&gt;
      http://mailman.umiacs.umd.edu/mailman/admin/MAILINGLISTNAME&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Click &amp;quot;Membership Management...&amp;quot; -&amp;gt; Choose &amp;quot;Mass Subscription&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* In the &amp;quot;Mass subscriptions&amp;quot; panel, enter user&#039;s address one address per line&lt;br /&gt;
&lt;br /&gt;
* click &amp;quot;Submit Your Changes&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
* You can verify it by choose &amp;quot;Membership List&amp;quot; under &amp;quot;Membership Management...&amp;quot;, find the user&#039;s address.&lt;br /&gt;
&lt;br /&gt;
* After completion, click &amp;quot;Logout&amp;quot;&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2225</id>
		<title>MailmanFAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2225"/>
		<updated>2008-10-01T18:46:08Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* How do I add users to a mailman mailing list? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Is there an easy way to discard all messages waiting to be reviewed?===&lt;br /&gt;
&lt;br /&gt;
If you have a list where non members can post but their messages are moderated, you&#039;ll have to deal with a lot of spam. After sometime, just a small percentage of them will be good posts. &lt;br /&gt;
&lt;br /&gt;
The admindb page has a checkbox that allows you to discard all held messages that are marked Defer.  On heavy lists with lots of spam holds, this makes clearing them much faster.&lt;br /&gt;
&lt;br /&gt;
To make sure that all mail from non-members is automatically deleted, go to the privacy page followed by the sender-filter sub-page.  At the bottom of the page, set to &amp;quot;discard&amp;quot; the value for &amp;quot;Action to take for postings from non-members for which no explicit action is defined.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
On the same page, at the top, you can do the same thing for postings by members (if your list is moderated such that users can&#039;t post)&lt;br /&gt;
&lt;br /&gt;
===How do I turn off HTML messages/attachments?===&lt;br /&gt;
&lt;br /&gt;
On the admin page, go to the Content Filtering section. &lt;br /&gt;
  &lt;br /&gt;
  Change &amp;quot;Should Mailman filter ...&amp;quot; to Yes. &lt;br /&gt;
&lt;br /&gt;
If you leave the rest at default values, including&lt;br /&gt;
&lt;br /&gt;
  Yes for &amp;quot;Should Mailman convert text/html parts to plain text?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
your list will only distribute plain text messages with no attachments.&lt;br /&gt;
&lt;br /&gt;
===How can I post from 2 or more addresses to a &amp;quot;members-only&amp;quot; list?===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re subscribed to a members-only list as USER@umiacs.umd.edu   and accidentally post as USER@cfar.umd.edu, your message will not go through.&lt;br /&gt;
&lt;br /&gt;
The solution is to actually subscribe both addresses to the list, but to disable delivery from all but one of the addresses. So in the above  example, I&#039;d subscribe USER@umiacs.umd.edu and USER@Ccfar.umd.edu, but I would disable delivery to USER@cfar.umd.edu.&lt;br /&gt;
&lt;br /&gt;
You can disable delivery to an address by going to the personal options page for that address and setting &amp;quot;Mail delivery&amp;quot; to &amp;quot;disabled&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
The list manager can disable delivery to an address by going to the membership page and clicking &amp;quot;no mail&amp;quot; nect to the address in question.&lt;br /&gt;
&lt;br /&gt;
===How do I change a member&#039;s password or send them their password?===&lt;br /&gt;
&lt;br /&gt;
Go to the Membership-management page, click the address in question. The page that appears allows you to set a users password or mail them their existing password by clicking on &lt;br /&gt;
  &lt;br /&gt;
  &amp;quot;Email my password to me&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note all the other options you can set for the user here.&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget that members can have their password sent to them anytime they like, by clicking the appropriate button on their personal page. There is no need for you to change their password if they forgettheir password.  They just have to go to&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/LISTNAME/USERNAME%40DOMAINNAME&lt;br /&gt;
&lt;br /&gt;
EG:&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/umiacs/johndoe%40umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
===How can I restrict the list so only authorized persons can post?===&lt;br /&gt;
&lt;br /&gt;
Turn on the moderation flag for all your existing users.  Go to the membership management page, and use the Additional Member Tasks to turn on the mod flag for all users.&lt;br /&gt;
&lt;br /&gt;
Then go to Privacy Options -&amp;gt; Sender filters and set the default_member_moderation flag to Yes so that new users are automatically set as moderated.&lt;br /&gt;
&lt;br /&gt;
Set the member_moderation_action to Reject and add a nice rejection notice text to the following text box.  &lt;br /&gt;
&lt;br /&gt;
  Set the generic_nonmember_action to Reject or Discard.&lt;br /&gt;
&lt;br /&gt;
===How can someone subscribe without my doing anything?===&lt;br /&gt;
&lt;br /&gt;
They just need to go to &lt;br /&gt;
&lt;br /&gt;
  http://lists/mailman/listinfo/LISTNAME&lt;br /&gt;
&lt;br /&gt;
and fill in the form. They can also subscribe/unsubscribe by email by sending to&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-subscribe&lt;br /&gt;
&lt;br /&gt;
or to unsubscribe,&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-unsubscribe&lt;br /&gt;
&lt;br /&gt;
In ALL of the above cases, the user will receive email confirming their action. They need to just reply to the mail for this to take affect.&lt;br /&gt;
&lt;br /&gt;
===How do I unsubscribe users without them getting an unsubscribe message?===&lt;br /&gt;
&lt;br /&gt;
By default, they will not get an unsubscribe message. You need only go to the membership page and click the &amp;quot;unsub&amp;quot; button next to each of their names and press &amp;quot;submit&amp;quot;   or go to the Mass-removal subpage under Membership-management and add all the addresses into the  window and click &amp;quot;submit&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===How do I edit a held message before approving it for the list?===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Use the &amp;quot;forward this message&amp;quot; feature in the admindb page to forward the message to yourself.&lt;br /&gt;
&lt;br /&gt;
* At the same time, discard the original held message. You may want to do this later, after you&#039;re sure the message was properly forwarded to you.&lt;br /&gt;
&lt;br /&gt;
* Edit the message in your mail reader. You should include a notice in the message explaining that the list moderator has edited the message. Please use proper netiquette!&lt;br /&gt;
&lt;br /&gt;
* Resend the message to the list using a Resent-To: header containing the list posting address. Also include an Approved: header containing &lt;br /&gt;
the list&#039;s admin password.&lt;br /&gt;
&lt;br /&gt;
===How do I add users to a mailman mailing list?===&lt;br /&gt;
&lt;br /&gt;
* Login to the mailman mailing list adminstration&#039;s page use your mailman admin password&lt;br /&gt;
&lt;br /&gt;
      http://mailman.umiacs.umd.edu/mailman/admin/MAILINGLISTNAME&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Click &amp;quot;Membership Management...&amp;quot; -&amp;gt; Choose &amp;quot;Mass Subscription&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* In the &amp;quot;Mass subscriptions&amp;quot; panel, enter user&#039;s address one address per line&lt;br /&gt;
&lt;br /&gt;
* click &amp;quot;Submit Your Changes&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
* You can verify it by choose &amp;quot;Membership List&amp;quot; under &amp;quot;Membership Management...&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* After completion, click &amp;quot;Logout&amp;quot;&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2224</id>
		<title>MailmanFAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2224"/>
		<updated>2008-10-01T18:43:51Z</updated>

		<summary type="html">&lt;p&gt;Xhe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Is there an easy way to discard all messages waiting to be reviewed?===&lt;br /&gt;
&lt;br /&gt;
If you have a list where non members can post but their messages are moderated, you&#039;ll have to deal with a lot of spam. After sometime, just a small percentage of them will be good posts. &lt;br /&gt;
&lt;br /&gt;
The admindb page has a checkbox that allows you to discard all held messages that are marked Defer.  On heavy lists with lots of spam holds, this makes clearing them much faster.&lt;br /&gt;
&lt;br /&gt;
To make sure that all mail from non-members is automatically deleted, go to the privacy page followed by the sender-filter sub-page.  At the bottom of the page, set to &amp;quot;discard&amp;quot; the value for &amp;quot;Action to take for postings from non-members for which no explicit action is defined.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
On the same page, at the top, you can do the same thing for postings by members (if your list is moderated such that users can&#039;t post)&lt;br /&gt;
&lt;br /&gt;
===How do I turn off HTML messages/attachments?===&lt;br /&gt;
&lt;br /&gt;
On the admin page, go to the Content Filtering section. &lt;br /&gt;
  &lt;br /&gt;
  Change &amp;quot;Should Mailman filter ...&amp;quot; to Yes. &lt;br /&gt;
&lt;br /&gt;
If you leave the rest at default values, including&lt;br /&gt;
&lt;br /&gt;
  Yes for &amp;quot;Should Mailman convert text/html parts to plain text?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
your list will only distribute plain text messages with no attachments.&lt;br /&gt;
&lt;br /&gt;
===How can I post from 2 or more addresses to a &amp;quot;members-only&amp;quot; list?===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re subscribed to a members-only list as USER@umiacs.umd.edu   and accidentally post as USER@cfar.umd.edu, your message will not go through.&lt;br /&gt;
&lt;br /&gt;
The solution is to actually subscribe both addresses to the list, but to disable delivery from all but one of the addresses. So in the above  example, I&#039;d subscribe USER@umiacs.umd.edu and USER@Ccfar.umd.edu, but I would disable delivery to USER@cfar.umd.edu.&lt;br /&gt;
&lt;br /&gt;
You can disable delivery to an address by going to the personal options page for that address and setting &amp;quot;Mail delivery&amp;quot; to &amp;quot;disabled&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
The list manager can disable delivery to an address by going to the membership page and clicking &amp;quot;no mail&amp;quot; nect to the address in question.&lt;br /&gt;
&lt;br /&gt;
===How do I change a member&#039;s password or send them their password?===&lt;br /&gt;
&lt;br /&gt;
Go to the Membership-management page, click the address in question. The page that appears allows you to set a users password or mail them their existing password by clicking on &lt;br /&gt;
  &lt;br /&gt;
  &amp;quot;Email my password to me&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note all the other options you can set for the user here.&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget that members can have their password sent to them anytime they like, by clicking the appropriate button on their personal page. There is no need for you to change their password if they forgettheir password.  They just have to go to&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/LISTNAME/USERNAME%40DOMAINNAME&lt;br /&gt;
&lt;br /&gt;
EG:&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/umiacs/johndoe%40umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
===How can I restrict the list so only authorized persons can post?===&lt;br /&gt;
&lt;br /&gt;
Turn on the moderation flag for all your existing users.  Go to the membership management page, and use the Additional Member Tasks to turn on the mod flag for all users.&lt;br /&gt;
&lt;br /&gt;
Then go to Privacy Options -&amp;gt; Sender filters and set the default_member_moderation flag to Yes so that new users are automatically set as moderated.&lt;br /&gt;
&lt;br /&gt;
Set the member_moderation_action to Reject and add a nice rejection notice text to the following text box.  &lt;br /&gt;
&lt;br /&gt;
  Set the generic_nonmember_action to Reject or Discard.&lt;br /&gt;
&lt;br /&gt;
===How can someone subscribe without my doing anything?===&lt;br /&gt;
&lt;br /&gt;
They just need to go to &lt;br /&gt;
&lt;br /&gt;
  http://lists/mailman/listinfo/LISTNAME&lt;br /&gt;
&lt;br /&gt;
and fill in the form. They can also subscribe/unsubscribe by email by sending to&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-subscribe&lt;br /&gt;
&lt;br /&gt;
or to unsubscribe,&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-unsubscribe&lt;br /&gt;
&lt;br /&gt;
In ALL of the above cases, the user will receive email confirming their action. They need to just reply to the mail for this to take affect.&lt;br /&gt;
&lt;br /&gt;
===How do I unsubscribe users without them getting an unsubscribe message?===&lt;br /&gt;
&lt;br /&gt;
By default, they will not get an unsubscribe message. You need only go to the membership page and click the &amp;quot;unsub&amp;quot; button next to each of their names and press &amp;quot;submit&amp;quot;   or go to the Mass-removal subpage under Membership-management and add all the addresses into the  window and click &amp;quot;submit&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===How do I edit a held message before approving it for the list?===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Use the &amp;quot;forward this message&amp;quot; feature in the admindb page to forward the message to yourself.&lt;br /&gt;
&lt;br /&gt;
* At the same time, discard the original held message. You may want to do this later, after you&#039;re sure the message was properly forwarded to you.&lt;br /&gt;
&lt;br /&gt;
* Edit the message in your mail reader. You should include a notice in the message explaining that the list moderator has edited the message. Please use proper netiquette!&lt;br /&gt;
&lt;br /&gt;
* Resend the message to the list using a Resent-To: header containing the list posting address. Also include an Approved: header containing &lt;br /&gt;
the list&#039;s admin password.&lt;br /&gt;
&lt;br /&gt;
===How do I add users to a mailman mailing list?===&lt;br /&gt;
&lt;br /&gt;
* Login to the mailman mailing list adminstration&#039;s page use your mailman admin password&lt;br /&gt;
&lt;br /&gt;
      http://mailman.umiacs.umd.edu/mailman/admin/MAILINGLISTNAME&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Click &amp;quot;Membership Management...&amp;quot; -&amp;gt; Choose &amp;quot;Mass Subscription&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* In the &amp;quot;Mass subscriptions&amp;quot; panel, enter user&#039;s address one address per line&lt;br /&gt;
&lt;br /&gt;
* click &amp;quot;Submit Your Changes&amp;quot; button.&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2223</id>
		<title>MailmanFAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2223"/>
		<updated>2008-10-01T18:43:14Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* How do I add users to a mailman mailing list? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Is there an easy way to discard all messages waiting to be reviewed?===&lt;br /&gt;
&lt;br /&gt;
If you have a list where non members can post but their messages are moderated, you&#039;ll have to deal with a lot of spam. After sometime, just a small percentage of them will be good posts. &lt;br /&gt;
&lt;br /&gt;
The admindb page has a checkbox that allows you to discard all held messages that are marked Defer.  On heavy lists with lots of spam holds, this makes clearing them much faster.&lt;br /&gt;
&lt;br /&gt;
To make sure that all mail from non-members is automatically deleted, go to the privacy page followed by the sender-filter sub-page.  At the bottom of the page, set to &amp;quot;discard&amp;quot; the value for &amp;quot;Action to take for postings from non-members for which no explicit action is defined.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
On the same page, at the top, you can do the same thing for postings by members (if your list is moderated such that users can&#039;t post)&lt;br /&gt;
&lt;br /&gt;
===How do I turn off HTML messages/attachments?===&lt;br /&gt;
&lt;br /&gt;
On the admin page, go to the Content Filtering section. &lt;br /&gt;
  &lt;br /&gt;
  Change &amp;quot;Should Mailman filter ...&amp;quot; to Yes. &lt;br /&gt;
&lt;br /&gt;
If you leave the rest at default values, including&lt;br /&gt;
&lt;br /&gt;
  Yes for &amp;quot;Should Mailman convert text/html parts to plain text?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
your list will only distribute plain text messages with no attachments.&lt;br /&gt;
&lt;br /&gt;
===How can I post from 2 or more addresses to a &amp;quot;members-only&amp;quot; list?===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re subscribed to a members-only list as USER@umiacs.umd.edu   and accidentally post as USER@cfar.umd.edu, your message will not go through.&lt;br /&gt;
&lt;br /&gt;
The solution is to actually subscribe both addresses to the list, but to disable delivery from all but one of the addresses. So in the above  example, I&#039;d subscribe USER@umiacs.umd.edu and USER@Ccfar.umd.edu, but I would disable delivery to USER@cfar.umd.edu.&lt;br /&gt;
&lt;br /&gt;
You can disable delivery to an address by going to the personal options page for that address and setting &amp;quot;Mail delivery&amp;quot; to &amp;quot;disabled&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
The list manager can disable delivery to an address by going to the membership page and clicking &amp;quot;no mail&amp;quot; nect to the address in question.&lt;br /&gt;
&lt;br /&gt;
===How do I change a member&#039;s password or send them their password?===&lt;br /&gt;
&lt;br /&gt;
Go to the Membership-management page, click the address in question. The page that appears allows you to set a users password or mail them their existing password by clicking on &lt;br /&gt;
  &lt;br /&gt;
  &amp;quot;Email my password to me&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note all the other options you can set for the user here.&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget that members can have their password sent to them anytime they like, by clicking the appropriate button on their personal page. There is no need for you to change their password if they forgettheir password.  They just have to go to&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/LISTNAME/USERNAME%40DOMAINNAME&lt;br /&gt;
&lt;br /&gt;
EG:&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/umiacs/johndoe%40umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
===How can I restrict the list so only authorized persons can post?===&lt;br /&gt;
&lt;br /&gt;
Turn on the moderation flag for all your existing users.  Go to the membership management page, and use the Additional Member Tasks to turn on the mod flag for all users.&lt;br /&gt;
&lt;br /&gt;
Then go to Privacy Options -&amp;gt; Sender filters and set the default_member_moderation flag to Yes so that new users are automatically set as moderated.&lt;br /&gt;
&lt;br /&gt;
Set the member_moderation_action to Reject and add a nice rejection notice text to the following text box.  &lt;br /&gt;
&lt;br /&gt;
  Set the generic_nonmember_action to Reject or Discard.&lt;br /&gt;
&lt;br /&gt;
===How can someone subscribe without my doing anything?===&lt;br /&gt;
&lt;br /&gt;
They just need to go to &lt;br /&gt;
&lt;br /&gt;
  http://lists/mailman/listinfo/LISTNAME&lt;br /&gt;
&lt;br /&gt;
and fill in the form. They can also subscribe/unsubscribe by email by sending to&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-subscribe&lt;br /&gt;
&lt;br /&gt;
or to unsubscribe,&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-unsubscribe&lt;br /&gt;
&lt;br /&gt;
In ALL of the above cases, the user will receive email confirming their action. They need to just reply to the mail for this to take affect.&lt;br /&gt;
&lt;br /&gt;
===How do I unsubscribe users without them getting an unsubscribe message?===&lt;br /&gt;
&lt;br /&gt;
By default, they will not get an unsubscribe message. You need only go to the membership page and click the &amp;quot;unsub&amp;quot; button next to each of their names and press &amp;quot;submit&amp;quot;   or go to the Mass-removal subpage under Membership-management and add all the addresses into the  window and click &amp;quot;submit&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===How do I edit a held message before approving it for the list?===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Use the &amp;quot;forward this message&amp;quot; feature in the admindb page to forward the message to yourself.&lt;br /&gt;
&lt;br /&gt;
* At the same time, discard the original held message. You may want to do this later, after you&#039;re sure the message was properly forwarded to you.&lt;br /&gt;
&lt;br /&gt;
* Edit the message in your mail reader. You should include a notice in the message explaining that the list moderator has edited the message. Please use proper netiquette!&lt;br /&gt;
&lt;br /&gt;
* Resend the message to the list using a Resent-To: header containing the list posting address. Also include an Approved: header containing &lt;br /&gt;
the list&#039;s admin password.&lt;br /&gt;
&lt;br /&gt;
===How do I add users to a mailman mailing list?===&lt;br /&gt;
&lt;br /&gt;
* Login to the mailman mailing list adminstration&#039;s page use your mailman admin password&lt;br /&gt;
&lt;br /&gt;
      http://mailman.umiacs.umd.edu/mailman/admin/MAILINGLISTNAME&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Click &amp;quot;Membership Management...&amp;quot; -&amp;gt; Choose &amp;quot;Mass Subscription&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* In the &amp;quot;Mass subscriptions&amp;quot; panel, enter user&#039;s address one address per line&lt;br /&gt;
&lt;br /&gt;
* click &amp;quot;Submit Your Changes&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
== mailinglistname ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Click &amp;quot;Membership Management...&amp;quot; -&amp;gt; Choose &amp;quot;Mass Subscription&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* In the &amp;quot;Mass subscriptions&amp;quot; panel, enter user&#039;s address one address per line&lt;br /&gt;
&lt;br /&gt;
* click &amp;quot;Submit Your Changes&amp;quot; button.&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2222</id>
		<title>MailmanFAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2222"/>
		<updated>2008-10-01T18:41:39Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* How do I add users to a mailman mailing list? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Is there an easy way to discard all messages waiting to be reviewed?===&lt;br /&gt;
&lt;br /&gt;
If you have a list where non members can post but their messages are moderated, you&#039;ll have to deal with a lot of spam. After sometime, just a small percentage of them will be good posts. &lt;br /&gt;
&lt;br /&gt;
The admindb page has a checkbox that allows you to discard all held messages that are marked Defer.  On heavy lists with lots of spam holds, this makes clearing them much faster.&lt;br /&gt;
&lt;br /&gt;
To make sure that all mail from non-members is automatically deleted, go to the privacy page followed by the sender-filter sub-page.  At the bottom of the page, set to &amp;quot;discard&amp;quot; the value for &amp;quot;Action to take for postings from non-members for which no explicit action is defined.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
On the same page, at the top, you can do the same thing for postings by members (if your list is moderated such that users can&#039;t post)&lt;br /&gt;
&lt;br /&gt;
===How do I turn off HTML messages/attachments?===&lt;br /&gt;
&lt;br /&gt;
On the admin page, go to the Content Filtering section. &lt;br /&gt;
  &lt;br /&gt;
  Change &amp;quot;Should Mailman filter ...&amp;quot; to Yes. &lt;br /&gt;
&lt;br /&gt;
If you leave the rest at default values, including&lt;br /&gt;
&lt;br /&gt;
  Yes for &amp;quot;Should Mailman convert text/html parts to plain text?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
your list will only distribute plain text messages with no attachments.&lt;br /&gt;
&lt;br /&gt;
===How can I post from 2 or more addresses to a &amp;quot;members-only&amp;quot; list?===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re subscribed to a members-only list as USER@umiacs.umd.edu   and accidentally post as USER@cfar.umd.edu, your message will not go through.&lt;br /&gt;
&lt;br /&gt;
The solution is to actually subscribe both addresses to the list, but to disable delivery from all but one of the addresses. So in the above  example, I&#039;d subscribe USER@umiacs.umd.edu and USER@Ccfar.umd.edu, but I would disable delivery to USER@cfar.umd.edu.&lt;br /&gt;
&lt;br /&gt;
You can disable delivery to an address by going to the personal options page for that address and setting &amp;quot;Mail delivery&amp;quot; to &amp;quot;disabled&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
The list manager can disable delivery to an address by going to the membership page and clicking &amp;quot;no mail&amp;quot; nect to the address in question.&lt;br /&gt;
&lt;br /&gt;
===How do I change a member&#039;s password or send them their password?===&lt;br /&gt;
&lt;br /&gt;
Go to the Membership-management page, click the address in question. The page that appears allows you to set a users password or mail them their existing password by clicking on &lt;br /&gt;
  &lt;br /&gt;
  &amp;quot;Email my password to me&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note all the other options you can set for the user here.&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget that members can have their password sent to them anytime they like, by clicking the appropriate button on their personal page. There is no need for you to change their password if they forgettheir password.  They just have to go to&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/LISTNAME/USERNAME%40DOMAINNAME&lt;br /&gt;
&lt;br /&gt;
EG:&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/umiacs/johndoe%40umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
===How can I restrict the list so only authorized persons can post?===&lt;br /&gt;
&lt;br /&gt;
Turn on the moderation flag for all your existing users.  Go to the membership management page, and use the Additional Member Tasks to turn on the mod flag for all users.&lt;br /&gt;
&lt;br /&gt;
Then go to Privacy Options -&amp;gt; Sender filters and set the default_member_moderation flag to Yes so that new users are automatically set as moderated.&lt;br /&gt;
&lt;br /&gt;
Set the member_moderation_action to Reject and add a nice rejection notice text to the following text box.  &lt;br /&gt;
&lt;br /&gt;
  Set the generic_nonmember_action to Reject or Discard.&lt;br /&gt;
&lt;br /&gt;
===How can someone subscribe without my doing anything?===&lt;br /&gt;
&lt;br /&gt;
They just need to go to &lt;br /&gt;
&lt;br /&gt;
  http://lists/mailman/listinfo/LISTNAME&lt;br /&gt;
&lt;br /&gt;
and fill in the form. They can also subscribe/unsubscribe by email by sending to&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-subscribe&lt;br /&gt;
&lt;br /&gt;
or to unsubscribe,&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-unsubscribe&lt;br /&gt;
&lt;br /&gt;
In ALL of the above cases, the user will receive email confirming their action. They need to just reply to the mail for this to take affect.&lt;br /&gt;
&lt;br /&gt;
===How do I unsubscribe users without them getting an unsubscribe message?===&lt;br /&gt;
&lt;br /&gt;
By default, they will not get an unsubscribe message. You need only go to the membership page and click the &amp;quot;unsub&amp;quot; button next to each of their names and press &amp;quot;submit&amp;quot;   or go to the Mass-removal subpage under Membership-management and add all the addresses into the  window and click &amp;quot;submit&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===How do I edit a held message before approving it for the list?===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Use the &amp;quot;forward this message&amp;quot; feature in the admindb page to forward the message to yourself.&lt;br /&gt;
&lt;br /&gt;
* At the same time, discard the original held message. You may want to do this later, after you&#039;re sure the message was properly forwarded to you.&lt;br /&gt;
&lt;br /&gt;
* Edit the message in your mail reader. You should include a notice in the message explaining that the list moderator has edited the message. Please use proper netiquette!&lt;br /&gt;
&lt;br /&gt;
* Resend the message to the list using a Resent-To: header containing the list posting address. Also include an Approved: header containing &lt;br /&gt;
the list&#039;s admin password.&lt;br /&gt;
&lt;br /&gt;
===How do I add users to a mailman mailing list?===&lt;br /&gt;
&lt;br /&gt;
* Login to the mailman mailing list adminstration&#039;s page use your mailman admin password&lt;br /&gt;
&lt;br /&gt;
      http://mailman.umiacs.umd.edu/mailman/admin/&lt;br /&gt;
== mailinglistname ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Click &amp;quot;Membership Management...&amp;quot; -&amp;gt; Choose &amp;quot;Mass Subscription&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* In the &amp;quot;Mass subscriptions&amp;quot; panel, enter user&#039;s address one address per line&lt;br /&gt;
&lt;br /&gt;
* click &amp;quot;Submit Your Changes&amp;quot; button.&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2221</id>
		<title>MailmanFAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2221"/>
		<updated>2008-10-01T18:41:13Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* How do I add users to a mailman mailing list? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Is there an easy way to discard all messages waiting to be reviewed?===&lt;br /&gt;
&lt;br /&gt;
If you have a list where non members can post but their messages are moderated, you&#039;ll have to deal with a lot of spam. After sometime, just a small percentage of them will be good posts. &lt;br /&gt;
&lt;br /&gt;
The admindb page has a checkbox that allows you to discard all held messages that are marked Defer.  On heavy lists with lots of spam holds, this makes clearing them much faster.&lt;br /&gt;
&lt;br /&gt;
To make sure that all mail from non-members is automatically deleted, go to the privacy page followed by the sender-filter sub-page.  At the bottom of the page, set to &amp;quot;discard&amp;quot; the value for &amp;quot;Action to take for postings from non-members for which no explicit action is defined.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
On the same page, at the top, you can do the same thing for postings by members (if your list is moderated such that users can&#039;t post)&lt;br /&gt;
&lt;br /&gt;
===How do I turn off HTML messages/attachments?===&lt;br /&gt;
&lt;br /&gt;
On the admin page, go to the Content Filtering section. &lt;br /&gt;
  &lt;br /&gt;
  Change &amp;quot;Should Mailman filter ...&amp;quot; to Yes. &lt;br /&gt;
&lt;br /&gt;
If you leave the rest at default values, including&lt;br /&gt;
&lt;br /&gt;
  Yes for &amp;quot;Should Mailman convert text/html parts to plain text?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
your list will only distribute plain text messages with no attachments.&lt;br /&gt;
&lt;br /&gt;
===How can I post from 2 or more addresses to a &amp;quot;members-only&amp;quot; list?===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re subscribed to a members-only list as USER@umiacs.umd.edu   and accidentally post as USER@cfar.umd.edu, your message will not go through.&lt;br /&gt;
&lt;br /&gt;
The solution is to actually subscribe both addresses to the list, but to disable delivery from all but one of the addresses. So in the above  example, I&#039;d subscribe USER@umiacs.umd.edu and USER@Ccfar.umd.edu, but I would disable delivery to USER@cfar.umd.edu.&lt;br /&gt;
&lt;br /&gt;
You can disable delivery to an address by going to the personal options page for that address and setting &amp;quot;Mail delivery&amp;quot; to &amp;quot;disabled&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
The list manager can disable delivery to an address by going to the membership page and clicking &amp;quot;no mail&amp;quot; nect to the address in question.&lt;br /&gt;
&lt;br /&gt;
===How do I change a member&#039;s password or send them their password?===&lt;br /&gt;
&lt;br /&gt;
Go to the Membership-management page, click the address in question. The page that appears allows you to set a users password or mail them their existing password by clicking on &lt;br /&gt;
  &lt;br /&gt;
  &amp;quot;Email my password to me&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note all the other options you can set for the user here.&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget that members can have their password sent to them anytime they like, by clicking the appropriate button on their personal page. There is no need for you to change their password if they forgettheir password.  They just have to go to&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/LISTNAME/USERNAME%40DOMAINNAME&lt;br /&gt;
&lt;br /&gt;
EG:&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/umiacs/johndoe%40umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
===How can I restrict the list so only authorized persons can post?===&lt;br /&gt;
&lt;br /&gt;
Turn on the moderation flag for all your existing users.  Go to the membership management page, and use the Additional Member Tasks to turn on the mod flag for all users.&lt;br /&gt;
&lt;br /&gt;
Then go to Privacy Options -&amp;gt; Sender filters and set the default_member_moderation flag to Yes so that new users are automatically set as moderated.&lt;br /&gt;
&lt;br /&gt;
Set the member_moderation_action to Reject and add a nice rejection notice text to the following text box.  &lt;br /&gt;
&lt;br /&gt;
  Set the generic_nonmember_action to Reject or Discard.&lt;br /&gt;
&lt;br /&gt;
===How can someone subscribe without my doing anything?===&lt;br /&gt;
&lt;br /&gt;
They just need to go to &lt;br /&gt;
&lt;br /&gt;
  http://lists/mailman/listinfo/LISTNAME&lt;br /&gt;
&lt;br /&gt;
and fill in the form. They can also subscribe/unsubscribe by email by sending to&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-subscribe&lt;br /&gt;
&lt;br /&gt;
or to unsubscribe,&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-unsubscribe&lt;br /&gt;
&lt;br /&gt;
In ALL of the above cases, the user will receive email confirming their action. They need to just reply to the mail for this to take affect.&lt;br /&gt;
&lt;br /&gt;
===How do I unsubscribe users without them getting an unsubscribe message?===&lt;br /&gt;
&lt;br /&gt;
By default, they will not get an unsubscribe message. You need only go to the membership page and click the &amp;quot;unsub&amp;quot; button next to each of their names and press &amp;quot;submit&amp;quot;   or go to the Mass-removal subpage under Membership-management and add all the addresses into the  window and click &amp;quot;submit&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===How do I edit a held message before approving it for the list?===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Use the &amp;quot;forward this message&amp;quot; feature in the admindb page to forward the message to yourself.&lt;br /&gt;
&lt;br /&gt;
* At the same time, discard the original held message. You may want to do this later, after you&#039;re sure the message was properly forwarded to you.&lt;br /&gt;
&lt;br /&gt;
* Edit the message in your mail reader. You should include a notice in the message explaining that the list moderator has edited the message. Please use proper netiquette!&lt;br /&gt;
&lt;br /&gt;
* Resend the message to the list using a Resent-To: header containing the list posting address. Also include an Approved: header containing &lt;br /&gt;
the list&#039;s admin password.&lt;br /&gt;
&lt;br /&gt;
===How do I add users to a mailman mailing list?===&lt;br /&gt;
&lt;br /&gt;
* Login to the mailman mailing list adminstration&#039;s page use your mailman admin password&lt;br /&gt;
&lt;br /&gt;
      http://mailman.umiacs.umd.edu/mailman/admin/&#039;&#039;&#039;&#039;&#039;mailinglistname&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Click &amp;quot;Membership Management...&amp;quot; -&amp;gt; Choose &amp;quot;Mass Subscription&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* In the &amp;quot;Mass subscriptions&amp;quot; panel, enter user&#039;s address one address per line&lt;br /&gt;
&lt;br /&gt;
* click &amp;quot;Submit Your Changes&amp;quot; button.&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2220</id>
		<title>MailmanFAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2220"/>
		<updated>2008-10-01T18:40:57Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* How do I add users to a mailman mailing list? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Is there an easy way to discard all messages waiting to be reviewed?===&lt;br /&gt;
&lt;br /&gt;
If you have a list where non members can post but their messages are moderated, you&#039;ll have to deal with a lot of spam. After sometime, just a small percentage of them will be good posts. &lt;br /&gt;
&lt;br /&gt;
The admindb page has a checkbox that allows you to discard all held messages that are marked Defer.  On heavy lists with lots of spam holds, this makes clearing them much faster.&lt;br /&gt;
&lt;br /&gt;
To make sure that all mail from non-members is automatically deleted, go to the privacy page followed by the sender-filter sub-page.  At the bottom of the page, set to &amp;quot;discard&amp;quot; the value for &amp;quot;Action to take for postings from non-members for which no explicit action is defined.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
On the same page, at the top, you can do the same thing for postings by members (if your list is moderated such that users can&#039;t post)&lt;br /&gt;
&lt;br /&gt;
===How do I turn off HTML messages/attachments?===&lt;br /&gt;
&lt;br /&gt;
On the admin page, go to the Content Filtering section. &lt;br /&gt;
  &lt;br /&gt;
  Change &amp;quot;Should Mailman filter ...&amp;quot; to Yes. &lt;br /&gt;
&lt;br /&gt;
If you leave the rest at default values, including&lt;br /&gt;
&lt;br /&gt;
  Yes for &amp;quot;Should Mailman convert text/html parts to plain text?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
your list will only distribute plain text messages with no attachments.&lt;br /&gt;
&lt;br /&gt;
===How can I post from 2 or more addresses to a &amp;quot;members-only&amp;quot; list?===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re subscribed to a members-only list as USER@umiacs.umd.edu   and accidentally post as USER@cfar.umd.edu, your message will not go through.&lt;br /&gt;
&lt;br /&gt;
The solution is to actually subscribe both addresses to the list, but to disable delivery from all but one of the addresses. So in the above  example, I&#039;d subscribe USER@umiacs.umd.edu and USER@Ccfar.umd.edu, but I would disable delivery to USER@cfar.umd.edu.&lt;br /&gt;
&lt;br /&gt;
You can disable delivery to an address by going to the personal options page for that address and setting &amp;quot;Mail delivery&amp;quot; to &amp;quot;disabled&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
The list manager can disable delivery to an address by going to the membership page and clicking &amp;quot;no mail&amp;quot; nect to the address in question.&lt;br /&gt;
&lt;br /&gt;
===How do I change a member&#039;s password or send them their password?===&lt;br /&gt;
&lt;br /&gt;
Go to the Membership-management page, click the address in question. The page that appears allows you to set a users password or mail them their existing password by clicking on &lt;br /&gt;
  &lt;br /&gt;
  &amp;quot;Email my password to me&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note all the other options you can set for the user here.&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget that members can have their password sent to them anytime they like, by clicking the appropriate button on their personal page. There is no need for you to change their password if they forgettheir password.  They just have to go to&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/LISTNAME/USERNAME%40DOMAINNAME&lt;br /&gt;
&lt;br /&gt;
EG:&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/umiacs/johndoe%40umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
===How can I restrict the list so only authorized persons can post?===&lt;br /&gt;
&lt;br /&gt;
Turn on the moderation flag for all your existing users.  Go to the membership management page, and use the Additional Member Tasks to turn on the mod flag for all users.&lt;br /&gt;
&lt;br /&gt;
Then go to Privacy Options -&amp;gt; Sender filters and set the default_member_moderation flag to Yes so that new users are automatically set as moderated.&lt;br /&gt;
&lt;br /&gt;
Set the member_moderation_action to Reject and add a nice rejection notice text to the following text box.  &lt;br /&gt;
&lt;br /&gt;
  Set the generic_nonmember_action to Reject or Discard.&lt;br /&gt;
&lt;br /&gt;
===How can someone subscribe without my doing anything?===&lt;br /&gt;
&lt;br /&gt;
They just need to go to &lt;br /&gt;
&lt;br /&gt;
  http://lists/mailman/listinfo/LISTNAME&lt;br /&gt;
&lt;br /&gt;
and fill in the form. They can also subscribe/unsubscribe by email by sending to&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-subscribe&lt;br /&gt;
&lt;br /&gt;
or to unsubscribe,&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-unsubscribe&lt;br /&gt;
&lt;br /&gt;
In ALL of the above cases, the user will receive email confirming their action. They need to just reply to the mail for this to take affect.&lt;br /&gt;
&lt;br /&gt;
===How do I unsubscribe users without them getting an unsubscribe message?===&lt;br /&gt;
&lt;br /&gt;
By default, they will not get an unsubscribe message. You need only go to the membership page and click the &amp;quot;unsub&amp;quot; button next to each of their names and press &amp;quot;submit&amp;quot;   or go to the Mass-removal subpage under Membership-management and add all the addresses into the  window and click &amp;quot;submit&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===How do I edit a held message before approving it for the list?===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Use the &amp;quot;forward this message&amp;quot; feature in the admindb page to forward the message to yourself.&lt;br /&gt;
&lt;br /&gt;
* At the same time, discard the original held message. You may want to do this later, after you&#039;re sure the message was properly forwarded to you.&lt;br /&gt;
&lt;br /&gt;
* Edit the message in your mail reader. You should include a notice in the message explaining that the list moderator has edited the message. Please use proper netiquette!&lt;br /&gt;
&lt;br /&gt;
* Resend the message to the list using a Resent-To: header containing the list posting address. Also include an Approved: header containing &lt;br /&gt;
the list&#039;s admin password.&lt;br /&gt;
&lt;br /&gt;
===How do I add users to a mailman mailing list?===&lt;br /&gt;
&lt;br /&gt;
* Login to the mailman mailing list adminstration&#039;s page use your mailman admin password&lt;br /&gt;
&lt;br /&gt;
      http://mailman.umiacs.umd.edu/mailman/admin/&#039;&#039;mailinglistname&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Click &amp;quot;Membership Management...&amp;quot; -&amp;gt; Choose &amp;quot;Mass Subscription&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* In the &amp;quot;Mass subscriptions&amp;quot; panel, enter user&#039;s address one address per line&lt;br /&gt;
&lt;br /&gt;
* click &amp;quot;Submit Your Changes&amp;quot; button.&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2219</id>
		<title>MailmanFAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2219"/>
		<updated>2008-10-01T18:40:41Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* How do I add users to a mailman mailing list? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Is there an easy way to discard all messages waiting to be reviewed?===&lt;br /&gt;
&lt;br /&gt;
If you have a list where non members can post but their messages are moderated, you&#039;ll have to deal with a lot of spam. After sometime, just a small percentage of them will be good posts. &lt;br /&gt;
&lt;br /&gt;
The admindb page has a checkbox that allows you to discard all held messages that are marked Defer.  On heavy lists with lots of spam holds, this makes clearing them much faster.&lt;br /&gt;
&lt;br /&gt;
To make sure that all mail from non-members is automatically deleted, go to the privacy page followed by the sender-filter sub-page.  At the bottom of the page, set to &amp;quot;discard&amp;quot; the value for &amp;quot;Action to take for postings from non-members for which no explicit action is defined.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
On the same page, at the top, you can do the same thing for postings by members (if your list is moderated such that users can&#039;t post)&lt;br /&gt;
&lt;br /&gt;
===How do I turn off HTML messages/attachments?===&lt;br /&gt;
&lt;br /&gt;
On the admin page, go to the Content Filtering section. &lt;br /&gt;
  &lt;br /&gt;
  Change &amp;quot;Should Mailman filter ...&amp;quot; to Yes. &lt;br /&gt;
&lt;br /&gt;
If you leave the rest at default values, including&lt;br /&gt;
&lt;br /&gt;
  Yes for &amp;quot;Should Mailman convert text/html parts to plain text?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
your list will only distribute plain text messages with no attachments.&lt;br /&gt;
&lt;br /&gt;
===How can I post from 2 or more addresses to a &amp;quot;members-only&amp;quot; list?===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re subscribed to a members-only list as USER@umiacs.umd.edu   and accidentally post as USER@cfar.umd.edu, your message will not go through.&lt;br /&gt;
&lt;br /&gt;
The solution is to actually subscribe both addresses to the list, but to disable delivery from all but one of the addresses. So in the above  example, I&#039;d subscribe USER@umiacs.umd.edu and USER@Ccfar.umd.edu, but I would disable delivery to USER@cfar.umd.edu.&lt;br /&gt;
&lt;br /&gt;
You can disable delivery to an address by going to the personal options page for that address and setting &amp;quot;Mail delivery&amp;quot; to &amp;quot;disabled&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
The list manager can disable delivery to an address by going to the membership page and clicking &amp;quot;no mail&amp;quot; nect to the address in question.&lt;br /&gt;
&lt;br /&gt;
===How do I change a member&#039;s password or send them their password?===&lt;br /&gt;
&lt;br /&gt;
Go to the Membership-management page, click the address in question. The page that appears allows you to set a users password or mail them their existing password by clicking on &lt;br /&gt;
  &lt;br /&gt;
  &amp;quot;Email my password to me&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note all the other options you can set for the user here.&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget that members can have their password sent to them anytime they like, by clicking the appropriate button on their personal page. There is no need for you to change their password if they forgettheir password.  They just have to go to&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/LISTNAME/USERNAME%40DOMAINNAME&lt;br /&gt;
&lt;br /&gt;
EG:&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/umiacs/johndoe%40umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
===How can I restrict the list so only authorized persons can post?===&lt;br /&gt;
&lt;br /&gt;
Turn on the moderation flag for all your existing users.  Go to the membership management page, and use the Additional Member Tasks to turn on the mod flag for all users.&lt;br /&gt;
&lt;br /&gt;
Then go to Privacy Options -&amp;gt; Sender filters and set the default_member_moderation flag to Yes so that new users are automatically set as moderated.&lt;br /&gt;
&lt;br /&gt;
Set the member_moderation_action to Reject and add a nice rejection notice text to the following text box.  &lt;br /&gt;
&lt;br /&gt;
  Set the generic_nonmember_action to Reject or Discard.&lt;br /&gt;
&lt;br /&gt;
===How can someone subscribe without my doing anything?===&lt;br /&gt;
&lt;br /&gt;
They just need to go to &lt;br /&gt;
&lt;br /&gt;
  http://lists/mailman/listinfo/LISTNAME&lt;br /&gt;
&lt;br /&gt;
and fill in the form. They can also subscribe/unsubscribe by email by sending to&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-subscribe&lt;br /&gt;
&lt;br /&gt;
or to unsubscribe,&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-unsubscribe&lt;br /&gt;
&lt;br /&gt;
In ALL of the above cases, the user will receive email confirming their action. They need to just reply to the mail for this to take affect.&lt;br /&gt;
&lt;br /&gt;
===How do I unsubscribe users without them getting an unsubscribe message?===&lt;br /&gt;
&lt;br /&gt;
By default, they will not get an unsubscribe message. You need only go to the membership page and click the &amp;quot;unsub&amp;quot; button next to each of their names and press &amp;quot;submit&amp;quot;   or go to the Mass-removal subpage under Membership-management and add all the addresses into the  window and click &amp;quot;submit&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===How do I edit a held message before approving it for the list?===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Use the &amp;quot;forward this message&amp;quot; feature in the admindb page to forward the message to yourself.&lt;br /&gt;
&lt;br /&gt;
* At the same time, discard the original held message. You may want to do this later, after you&#039;re sure the message was properly forwarded to you.&lt;br /&gt;
&lt;br /&gt;
* Edit the message in your mail reader. You should include a notice in the message explaining that the list moderator has edited the message. Please use proper netiquette!&lt;br /&gt;
&lt;br /&gt;
* Resend the message to the list using a Resent-To: header containing the list posting address. Also include an Approved: header containing &lt;br /&gt;
the list&#039;s admin password.&lt;br /&gt;
&lt;br /&gt;
===How do I add users to a mailman mailing list?===&lt;br /&gt;
&lt;br /&gt;
* Login to the mailman mailing list adminstration&#039;s page use your mailman admin password&lt;br /&gt;
&lt;br /&gt;
      http://mailman.umiacs.umd.edu/mailman/admin/mailinglistname&lt;br /&gt;
&lt;br /&gt;
* Click &amp;quot;Membership Management...&amp;quot; -&amp;gt; Choose &amp;quot;Mass Subscription&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* In the &amp;quot;Mass subscriptions&amp;quot; panel, enter user&#039;s address one address per line&lt;br /&gt;
&lt;br /&gt;
* click &amp;quot;Submit Your Changes&amp;quot; button.&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2218</id>
		<title>MailmanFAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2218"/>
		<updated>2008-10-01T18:40:25Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* How do I add users to a mailman mailing list? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Is there an easy way to discard all messages waiting to be reviewed?===&lt;br /&gt;
&lt;br /&gt;
If you have a list where non members can post but their messages are moderated, you&#039;ll have to deal with a lot of spam. After sometime, just a small percentage of them will be good posts. &lt;br /&gt;
&lt;br /&gt;
The admindb page has a checkbox that allows you to discard all held messages that are marked Defer.  On heavy lists with lots of spam holds, this makes clearing them much faster.&lt;br /&gt;
&lt;br /&gt;
To make sure that all mail from non-members is automatically deleted, go to the privacy page followed by the sender-filter sub-page.  At the bottom of the page, set to &amp;quot;discard&amp;quot; the value for &amp;quot;Action to take for postings from non-members for which no explicit action is defined.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
On the same page, at the top, you can do the same thing for postings by members (if your list is moderated such that users can&#039;t post)&lt;br /&gt;
&lt;br /&gt;
===How do I turn off HTML messages/attachments?===&lt;br /&gt;
&lt;br /&gt;
On the admin page, go to the Content Filtering section. &lt;br /&gt;
  &lt;br /&gt;
  Change &amp;quot;Should Mailman filter ...&amp;quot; to Yes. &lt;br /&gt;
&lt;br /&gt;
If you leave the rest at default values, including&lt;br /&gt;
&lt;br /&gt;
  Yes for &amp;quot;Should Mailman convert text/html parts to plain text?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
your list will only distribute plain text messages with no attachments.&lt;br /&gt;
&lt;br /&gt;
===How can I post from 2 or more addresses to a &amp;quot;members-only&amp;quot; list?===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re subscribed to a members-only list as USER@umiacs.umd.edu   and accidentally post as USER@cfar.umd.edu, your message will not go through.&lt;br /&gt;
&lt;br /&gt;
The solution is to actually subscribe both addresses to the list, but to disable delivery from all but one of the addresses. So in the above  example, I&#039;d subscribe USER@umiacs.umd.edu and USER@Ccfar.umd.edu, but I would disable delivery to USER@cfar.umd.edu.&lt;br /&gt;
&lt;br /&gt;
You can disable delivery to an address by going to the personal options page for that address and setting &amp;quot;Mail delivery&amp;quot; to &amp;quot;disabled&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
The list manager can disable delivery to an address by going to the membership page and clicking &amp;quot;no mail&amp;quot; nect to the address in question.&lt;br /&gt;
&lt;br /&gt;
===How do I change a member&#039;s password or send them their password?===&lt;br /&gt;
&lt;br /&gt;
Go to the Membership-management page, click the address in question. The page that appears allows you to set a users password or mail them their existing password by clicking on &lt;br /&gt;
  &lt;br /&gt;
  &amp;quot;Email my password to me&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note all the other options you can set for the user here.&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget that members can have their password sent to them anytime they like, by clicking the appropriate button on their personal page. There is no need for you to change their password if they forgettheir password.  They just have to go to&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/LISTNAME/USERNAME%40DOMAINNAME&lt;br /&gt;
&lt;br /&gt;
EG:&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/umiacs/johndoe%40umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
===How can I restrict the list so only authorized persons can post?===&lt;br /&gt;
&lt;br /&gt;
Turn on the moderation flag for all your existing users.  Go to the membership management page, and use the Additional Member Tasks to turn on the mod flag for all users.&lt;br /&gt;
&lt;br /&gt;
Then go to Privacy Options -&amp;gt; Sender filters and set the default_member_moderation flag to Yes so that new users are automatically set as moderated.&lt;br /&gt;
&lt;br /&gt;
Set the member_moderation_action to Reject and add a nice rejection notice text to the following text box.  &lt;br /&gt;
&lt;br /&gt;
  Set the generic_nonmember_action to Reject or Discard.&lt;br /&gt;
&lt;br /&gt;
===How can someone subscribe without my doing anything?===&lt;br /&gt;
&lt;br /&gt;
They just need to go to &lt;br /&gt;
&lt;br /&gt;
  http://lists/mailman/listinfo/LISTNAME&lt;br /&gt;
&lt;br /&gt;
and fill in the form. They can also subscribe/unsubscribe by email by sending to&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-subscribe&lt;br /&gt;
&lt;br /&gt;
or to unsubscribe,&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-unsubscribe&lt;br /&gt;
&lt;br /&gt;
In ALL of the above cases, the user will receive email confirming their action. They need to just reply to the mail for this to take affect.&lt;br /&gt;
&lt;br /&gt;
===How do I unsubscribe users without them getting an unsubscribe message?===&lt;br /&gt;
&lt;br /&gt;
By default, they will not get an unsubscribe message. You need only go to the membership page and click the &amp;quot;unsub&amp;quot; button next to each of their names and press &amp;quot;submit&amp;quot;   or go to the Mass-removal subpage under Membership-management and add all the addresses into the  window and click &amp;quot;submit&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===How do I edit a held message before approving it for the list?===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Use the &amp;quot;forward this message&amp;quot; feature in the admindb page to forward the message to yourself.&lt;br /&gt;
&lt;br /&gt;
* At the same time, discard the original held message. You may want to do this later, after you&#039;re sure the message was properly forwarded to you.&lt;br /&gt;
&lt;br /&gt;
* Edit the message in your mail reader. You should include a notice in the message explaining that the list moderator has edited the message. Please use proper netiquette!&lt;br /&gt;
&lt;br /&gt;
* Resend the message to the list using a Resent-To: header containing the list posting address. Also include an Approved: header containing &lt;br /&gt;
the list&#039;s admin password.&lt;br /&gt;
&lt;br /&gt;
===How do I add users to a mailman mailing list?===&lt;br /&gt;
&lt;br /&gt;
* Login to the mailman mailing list adminstration&#039;s page use your mailman admin password&lt;br /&gt;
&lt;br /&gt;
      http://mailman.umiacs.umd.edu/mailman/admin/&#039;&#039;mailinglistname&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Click &amp;quot;Membership Management...&amp;quot; -&amp;gt; Choose &amp;quot;Mass Subscription&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* In the &amp;quot;Mass subscriptions&amp;quot; panel, enter user&#039;s address one address per line&lt;br /&gt;
&lt;br /&gt;
* click &amp;quot;Submit Your Changes&amp;quot; button.&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2217</id>
		<title>MailmanFAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2217"/>
		<updated>2008-10-01T18:39:43Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* How do I add users to a mailman mailing list? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Is there an easy way to discard all messages waiting to be reviewed?===&lt;br /&gt;
&lt;br /&gt;
If you have a list where non members can post but their messages are moderated, you&#039;ll have to deal with a lot of spam. After sometime, just a small percentage of them will be good posts. &lt;br /&gt;
&lt;br /&gt;
The admindb page has a checkbox that allows you to discard all held messages that are marked Defer.  On heavy lists with lots of spam holds, this makes clearing them much faster.&lt;br /&gt;
&lt;br /&gt;
To make sure that all mail from non-members is automatically deleted, go to the privacy page followed by the sender-filter sub-page.  At the bottom of the page, set to &amp;quot;discard&amp;quot; the value for &amp;quot;Action to take for postings from non-members for which no explicit action is defined.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
On the same page, at the top, you can do the same thing for postings by members (if your list is moderated such that users can&#039;t post)&lt;br /&gt;
&lt;br /&gt;
===How do I turn off HTML messages/attachments?===&lt;br /&gt;
&lt;br /&gt;
On the admin page, go to the Content Filtering section. &lt;br /&gt;
  &lt;br /&gt;
  Change &amp;quot;Should Mailman filter ...&amp;quot; to Yes. &lt;br /&gt;
&lt;br /&gt;
If you leave the rest at default values, including&lt;br /&gt;
&lt;br /&gt;
  Yes for &amp;quot;Should Mailman convert text/html parts to plain text?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
your list will only distribute plain text messages with no attachments.&lt;br /&gt;
&lt;br /&gt;
===How can I post from 2 or more addresses to a &amp;quot;members-only&amp;quot; list?===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re subscribed to a members-only list as USER@umiacs.umd.edu   and accidentally post as USER@cfar.umd.edu, your message will not go through.&lt;br /&gt;
&lt;br /&gt;
The solution is to actually subscribe both addresses to the list, but to disable delivery from all but one of the addresses. So in the above  example, I&#039;d subscribe USER@umiacs.umd.edu and USER@Ccfar.umd.edu, but I would disable delivery to USER@cfar.umd.edu.&lt;br /&gt;
&lt;br /&gt;
You can disable delivery to an address by going to the personal options page for that address and setting &amp;quot;Mail delivery&amp;quot; to &amp;quot;disabled&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
The list manager can disable delivery to an address by going to the membership page and clicking &amp;quot;no mail&amp;quot; nect to the address in question.&lt;br /&gt;
&lt;br /&gt;
===How do I change a member&#039;s password or send them their password?===&lt;br /&gt;
&lt;br /&gt;
Go to the Membership-management page, click the address in question. The page that appears allows you to set a users password or mail them their existing password by clicking on &lt;br /&gt;
  &lt;br /&gt;
  &amp;quot;Email my password to me&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note all the other options you can set for the user here.&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget that members can have their password sent to them anytime they like, by clicking the appropriate button on their personal page. There is no need for you to change their password if they forgettheir password.  They just have to go to&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/LISTNAME/USERNAME%40DOMAINNAME&lt;br /&gt;
&lt;br /&gt;
EG:&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/umiacs/johndoe%40umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
===How can I restrict the list so only authorized persons can post?===&lt;br /&gt;
&lt;br /&gt;
Turn on the moderation flag for all your existing users.  Go to the membership management page, and use the Additional Member Tasks to turn on the mod flag for all users.&lt;br /&gt;
&lt;br /&gt;
Then go to Privacy Options -&amp;gt; Sender filters and set the default_member_moderation flag to Yes so that new users are automatically set as moderated.&lt;br /&gt;
&lt;br /&gt;
Set the member_moderation_action to Reject and add a nice rejection notice text to the following text box.  &lt;br /&gt;
&lt;br /&gt;
  Set the generic_nonmember_action to Reject or Discard.&lt;br /&gt;
&lt;br /&gt;
===How can someone subscribe without my doing anything?===&lt;br /&gt;
&lt;br /&gt;
They just need to go to &lt;br /&gt;
&lt;br /&gt;
  http://lists/mailman/listinfo/LISTNAME&lt;br /&gt;
&lt;br /&gt;
and fill in the form. They can also subscribe/unsubscribe by email by sending to&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-subscribe&lt;br /&gt;
&lt;br /&gt;
or to unsubscribe,&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-unsubscribe&lt;br /&gt;
&lt;br /&gt;
In ALL of the above cases, the user will receive email confirming their action. They need to just reply to the mail for this to take affect.&lt;br /&gt;
&lt;br /&gt;
===How do I unsubscribe users without them getting an unsubscribe message?===&lt;br /&gt;
&lt;br /&gt;
By default, they will not get an unsubscribe message. You need only go to the membership page and click the &amp;quot;unsub&amp;quot; button next to each of their names and press &amp;quot;submit&amp;quot;   or go to the Mass-removal subpage under Membership-management and add all the addresses into the  window and click &amp;quot;submit&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===How do I edit a held message before approving it for the list?===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Use the &amp;quot;forward this message&amp;quot; feature in the admindb page to forward the message to yourself.&lt;br /&gt;
&lt;br /&gt;
* At the same time, discard the original held message. You may want to do this later, after you&#039;re sure the message was properly forwarded to you.&lt;br /&gt;
&lt;br /&gt;
* Edit the message in your mail reader. You should include a notice in the message explaining that the list moderator has edited the message. Please use proper netiquette!&lt;br /&gt;
&lt;br /&gt;
* Resend the message to the list using a Resent-To: header containing the list posting address. Also include an Approved: header containing &lt;br /&gt;
the list&#039;s admin password.&lt;br /&gt;
&lt;br /&gt;
===How do I add users to a mailman mailing list?===&lt;br /&gt;
&lt;br /&gt;
* Login to the mailman mailing list adminstration&#039;s page use your mailman admin password&lt;br /&gt;
&lt;br /&gt;
      http://mailman.umiacs.umd.edu/mailman/admin/&amp;lt;it&amp;gt;mailinglistname&amp;lt;/it&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Click &amp;quot;Membership Management...&amp;quot; -&amp;gt; Choose &amp;quot;Mass Subscription&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* In the &amp;quot;Mass subscriptions&amp;quot; panel, enter user&#039;s address one address per line&lt;br /&gt;
&lt;br /&gt;
* click &amp;quot;Submit Your Changes&amp;quot; button.&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2216</id>
		<title>MailmanFAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2216"/>
		<updated>2008-10-01T18:37:24Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* How do I add users to a mailman mailing list? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Is there an easy way to discard all messages waiting to be reviewed?===&lt;br /&gt;
&lt;br /&gt;
If you have a list where non members can post but their messages are moderated, you&#039;ll have to deal with a lot of spam. After sometime, just a small percentage of them will be good posts. &lt;br /&gt;
&lt;br /&gt;
The admindb page has a checkbox that allows you to discard all held messages that are marked Defer.  On heavy lists with lots of spam holds, this makes clearing them much faster.&lt;br /&gt;
&lt;br /&gt;
To make sure that all mail from non-members is automatically deleted, go to the privacy page followed by the sender-filter sub-page.  At the bottom of the page, set to &amp;quot;discard&amp;quot; the value for &amp;quot;Action to take for postings from non-members for which no explicit action is defined.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
On the same page, at the top, you can do the same thing for postings by members (if your list is moderated such that users can&#039;t post)&lt;br /&gt;
&lt;br /&gt;
===How do I turn off HTML messages/attachments?===&lt;br /&gt;
&lt;br /&gt;
On the admin page, go to the Content Filtering section. &lt;br /&gt;
  &lt;br /&gt;
  Change &amp;quot;Should Mailman filter ...&amp;quot; to Yes. &lt;br /&gt;
&lt;br /&gt;
If you leave the rest at default values, including&lt;br /&gt;
&lt;br /&gt;
  Yes for &amp;quot;Should Mailman convert text/html parts to plain text?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
your list will only distribute plain text messages with no attachments.&lt;br /&gt;
&lt;br /&gt;
===How can I post from 2 or more addresses to a &amp;quot;members-only&amp;quot; list?===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re subscribed to a members-only list as USER@umiacs.umd.edu   and accidentally post as USER@cfar.umd.edu, your message will not go through.&lt;br /&gt;
&lt;br /&gt;
The solution is to actually subscribe both addresses to the list, but to disable delivery from all but one of the addresses. So in the above  example, I&#039;d subscribe USER@umiacs.umd.edu and USER@Ccfar.umd.edu, but I would disable delivery to USER@cfar.umd.edu.&lt;br /&gt;
&lt;br /&gt;
You can disable delivery to an address by going to the personal options page for that address and setting &amp;quot;Mail delivery&amp;quot; to &amp;quot;disabled&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
The list manager can disable delivery to an address by going to the membership page and clicking &amp;quot;no mail&amp;quot; nect to the address in question.&lt;br /&gt;
&lt;br /&gt;
===How do I change a member&#039;s password or send them their password?===&lt;br /&gt;
&lt;br /&gt;
Go to the Membership-management page, click the address in question. The page that appears allows you to set a users password or mail them their existing password by clicking on &lt;br /&gt;
  &lt;br /&gt;
  &amp;quot;Email my password to me&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note all the other options you can set for the user here.&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget that members can have their password sent to them anytime they like, by clicking the appropriate button on their personal page. There is no need for you to change their password if they forgettheir password.  They just have to go to&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/LISTNAME/USERNAME%40DOMAINNAME&lt;br /&gt;
&lt;br /&gt;
EG:&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/umiacs/johndoe%40umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
===How can I restrict the list so only authorized persons can post?===&lt;br /&gt;
&lt;br /&gt;
Turn on the moderation flag for all your existing users.  Go to the membership management page, and use the Additional Member Tasks to turn on the mod flag for all users.&lt;br /&gt;
&lt;br /&gt;
Then go to Privacy Options -&amp;gt; Sender filters and set the default_member_moderation flag to Yes so that new users are automatically set as moderated.&lt;br /&gt;
&lt;br /&gt;
Set the member_moderation_action to Reject and add a nice rejection notice text to the following text box.  &lt;br /&gt;
&lt;br /&gt;
  Set the generic_nonmember_action to Reject or Discard.&lt;br /&gt;
&lt;br /&gt;
===How can someone subscribe without my doing anything?===&lt;br /&gt;
&lt;br /&gt;
They just need to go to &lt;br /&gt;
&lt;br /&gt;
  http://lists/mailman/listinfo/LISTNAME&lt;br /&gt;
&lt;br /&gt;
and fill in the form. They can also subscribe/unsubscribe by email by sending to&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-subscribe&lt;br /&gt;
&lt;br /&gt;
or to unsubscribe,&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-unsubscribe&lt;br /&gt;
&lt;br /&gt;
In ALL of the above cases, the user will receive email confirming their action. They need to just reply to the mail for this to take affect.&lt;br /&gt;
&lt;br /&gt;
===How do I unsubscribe users without them getting an unsubscribe message?===&lt;br /&gt;
&lt;br /&gt;
By default, they will not get an unsubscribe message. You need only go to the membership page and click the &amp;quot;unsub&amp;quot; button next to each of their names and press &amp;quot;submit&amp;quot;   or go to the Mass-removal subpage under Membership-management and add all the addresses into the  window and click &amp;quot;submit&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===How do I edit a held message before approving it for the list?===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Use the &amp;quot;forward this message&amp;quot; feature in the admindb page to forward the message to yourself.&lt;br /&gt;
&lt;br /&gt;
* At the same time, discard the original held message. You may want to do this later, after you&#039;re sure the message was properly forwarded to you.&lt;br /&gt;
&lt;br /&gt;
* Edit the message in your mail reader. You should include a notice in the message explaining that the list moderator has edited the message. Please use proper netiquette!&lt;br /&gt;
&lt;br /&gt;
* Resend the message to the list using a Resent-To: header containing the list posting address. Also include an Approved: header containing &lt;br /&gt;
the list&#039;s admin password.&lt;br /&gt;
&lt;br /&gt;
===How do I add users to a mailman mailing list?===&lt;br /&gt;
&lt;br /&gt;
* Login to the mailman mailing list adminstration&#039;s page use your mailman admin password&lt;br /&gt;
&lt;br /&gt;
      http://mailman.umiacs.umd.edu/mailman/admin/mailinglistname&lt;br /&gt;
&lt;br /&gt;
* Click &amp;quot;Membership Management...&amp;quot; -&amp;gt; Choose &amp;quot;Mass Subscription&amp;quot;&lt;br /&gt;
&lt;br /&gt;
* In the &amp;quot;Mass subscriptions&amp;quot; panel, enter user&#039;s address pne address per line&lt;br /&gt;
&lt;br /&gt;
* click &amp;quot;Submit Your Changes&amp;quot; button.&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2215</id>
		<title>MailmanFAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2215"/>
		<updated>2008-10-01T18:22:19Z</updated>

		<summary type="html">&lt;p&gt;Xhe: /* How do I add users to a mailman mailing list? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Is there an easy way to discard all messages waiting to be reviewed?===&lt;br /&gt;
&lt;br /&gt;
If you have a list where non members can post but their messages are moderated, you&#039;ll have to deal with a lot of spam. After sometime, just a small percentage of them will be good posts. &lt;br /&gt;
&lt;br /&gt;
The admindb page has a checkbox that allows you to discard all held messages that are marked Defer.  On heavy lists with lots of spam holds, this makes clearing them much faster.&lt;br /&gt;
&lt;br /&gt;
To make sure that all mail from non-members is automatically deleted, go to the privacy page followed by the sender-filter sub-page.  At the bottom of the page, set to &amp;quot;discard&amp;quot; the value for &amp;quot;Action to take for postings from non-members for which no explicit action is defined.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
On the same page, at the top, you can do the same thing for postings by members (if your list is moderated such that users can&#039;t post)&lt;br /&gt;
&lt;br /&gt;
===How do I turn off HTML messages/attachments?===&lt;br /&gt;
&lt;br /&gt;
On the admin page, go to the Content Filtering section. &lt;br /&gt;
  &lt;br /&gt;
  Change &amp;quot;Should Mailman filter ...&amp;quot; to Yes. &lt;br /&gt;
&lt;br /&gt;
If you leave the rest at default values, including&lt;br /&gt;
&lt;br /&gt;
  Yes for &amp;quot;Should Mailman convert text/html parts to plain text?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
your list will only distribute plain text messages with no attachments.&lt;br /&gt;
&lt;br /&gt;
===How can I post from 2 or more addresses to a &amp;quot;members-only&amp;quot; list?===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re subscribed to a members-only list as USER@umiacs.umd.edu   and accidentally post as USER@cfar.umd.edu, your message will not go through.&lt;br /&gt;
&lt;br /&gt;
The solution is to actually subscribe both addresses to the list, but to disable delivery from all but one of the addresses. So in the above  example, I&#039;d subscribe USER@umiacs.umd.edu and USER@Ccfar.umd.edu, but I would disable delivery to USER@cfar.umd.edu.&lt;br /&gt;
&lt;br /&gt;
You can disable delivery to an address by going to the personal options page for that address and setting &amp;quot;Mail delivery&amp;quot; to &amp;quot;disabled&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
The list manager can disable delivery to an address by going to the membership page and clicking &amp;quot;no mail&amp;quot; nect to the address in question.&lt;br /&gt;
&lt;br /&gt;
===How do I change a member&#039;s password or send them their password?===&lt;br /&gt;
&lt;br /&gt;
Go to the Membership-management page, click the address in question. The page that appears allows you to set a users password or mail them their existing password by clicking on &lt;br /&gt;
  &lt;br /&gt;
  &amp;quot;Email my password to me&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note all the other options you can set for the user here.&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget that members can have their password sent to them anytime they like, by clicking the appropriate button on their personal page. There is no need for you to change their password if they forgettheir password.  They just have to go to&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/LISTNAME/USERNAME%40DOMAINNAME&lt;br /&gt;
&lt;br /&gt;
EG:&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/umiacs/johndoe%40umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
===How can I restrict the list so only authorized persons can post?===&lt;br /&gt;
&lt;br /&gt;
Turn on the moderation flag for all your existing users.  Go to the membership management page, and use the Additional Member Tasks to turn on the mod flag for all users.&lt;br /&gt;
&lt;br /&gt;
Then go to Privacy Options -&amp;gt; Sender filters and set the default_member_moderation flag to Yes so that new users are automatically set as moderated.&lt;br /&gt;
&lt;br /&gt;
Set the member_moderation_action to Reject and add a nice rejection notice text to the following text box.  &lt;br /&gt;
&lt;br /&gt;
  Set the generic_nonmember_action to Reject or Discard.&lt;br /&gt;
&lt;br /&gt;
===How can someone subscribe without my doing anything?===&lt;br /&gt;
&lt;br /&gt;
They just need to go to &lt;br /&gt;
&lt;br /&gt;
  http://lists/mailman/listinfo/LISTNAME&lt;br /&gt;
&lt;br /&gt;
and fill in the form. They can also subscribe/unsubscribe by email by sending to&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-subscribe&lt;br /&gt;
&lt;br /&gt;
or to unsubscribe,&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-unsubscribe&lt;br /&gt;
&lt;br /&gt;
In ALL of the above cases, the user will receive email confirming their action. They need to just reply to the mail for this to take affect.&lt;br /&gt;
&lt;br /&gt;
===How do I unsubscribe users without them getting an unsubscribe message?===&lt;br /&gt;
&lt;br /&gt;
By default, they will not get an unsubscribe message. You need only go to the membership page and click the &amp;quot;unsub&amp;quot; button next to each of their names and press &amp;quot;submit&amp;quot;   or go to the Mass-removal subpage under Membership-management and add all the addresses into the  window and click &amp;quot;submit&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===How do I edit a held message before approving it for the list?===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Use the &amp;quot;forward this message&amp;quot; feature in the admindb page to forward the message to yourself.&lt;br /&gt;
&lt;br /&gt;
* At the same time, discard the original held message. You may want to do this later, after you&#039;re sure the message was properly forwarded to you.&lt;br /&gt;
&lt;br /&gt;
* Edit the message in your mail reader. You should include a notice in the message explaining that the list moderator has edited the message. Please use proper netiquette!&lt;br /&gt;
&lt;br /&gt;
* Resend the message to the list using a Resent-To: header containing the list posting address. Also include an Approved: header containing &lt;br /&gt;
the list&#039;s admin password.&lt;br /&gt;
&lt;br /&gt;
===How do I add users to a mailman mailing list?===&lt;br /&gt;
&lt;br /&gt;
* Login to the mailman mailing list adminstration&#039;s page use your mailman admin password&lt;br /&gt;
&lt;br /&gt;
http://mailman.umiacs.umd.edu/mailman/admin/&lt;br /&gt;
&lt;br /&gt;
*&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2214</id>
		<title>MailmanFAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2214"/>
		<updated>2008-10-01T18:20:22Z</updated>

		<summary type="html">&lt;p&gt;Xhe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Is there an easy way to discard all messages waiting to be reviewed?===&lt;br /&gt;
&lt;br /&gt;
If you have a list where non members can post but their messages are moderated, you&#039;ll have to deal with a lot of spam. After sometime, just a small percentage of them will be good posts. &lt;br /&gt;
&lt;br /&gt;
The admindb page has a checkbox that allows you to discard all held messages that are marked Defer.  On heavy lists with lots of spam holds, this makes clearing them much faster.&lt;br /&gt;
&lt;br /&gt;
To make sure that all mail from non-members is automatically deleted, go to the privacy page followed by the sender-filter sub-page.  At the bottom of the page, set to &amp;quot;discard&amp;quot; the value for &amp;quot;Action to take for postings from non-members for which no explicit action is defined.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
On the same page, at the top, you can do the same thing for postings by members (if your list is moderated such that users can&#039;t post)&lt;br /&gt;
&lt;br /&gt;
===How do I turn off HTML messages/attachments?===&lt;br /&gt;
&lt;br /&gt;
On the admin page, go to the Content Filtering section. &lt;br /&gt;
  &lt;br /&gt;
  Change &amp;quot;Should Mailman filter ...&amp;quot; to Yes. &lt;br /&gt;
&lt;br /&gt;
If you leave the rest at default values, including&lt;br /&gt;
&lt;br /&gt;
  Yes for &amp;quot;Should Mailman convert text/html parts to plain text?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
your list will only distribute plain text messages with no attachments.&lt;br /&gt;
&lt;br /&gt;
===How can I post from 2 or more addresses to a &amp;quot;members-only&amp;quot; list?===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re subscribed to a members-only list as USER@umiacs.umd.edu   and accidentally post as USER@cfar.umd.edu, your message will not go through.&lt;br /&gt;
&lt;br /&gt;
The solution is to actually subscribe both addresses to the list, but to disable delivery from all but one of the addresses. So in the above  example, I&#039;d subscribe USER@umiacs.umd.edu and USER@Ccfar.umd.edu, but I would disable delivery to USER@cfar.umd.edu.&lt;br /&gt;
&lt;br /&gt;
You can disable delivery to an address by going to the personal options page for that address and setting &amp;quot;Mail delivery&amp;quot; to &amp;quot;disabled&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
The list manager can disable delivery to an address by going to the membership page and clicking &amp;quot;no mail&amp;quot; nect to the address in question.&lt;br /&gt;
&lt;br /&gt;
===How do I change a member&#039;s password or send them their password?===&lt;br /&gt;
&lt;br /&gt;
Go to the Membership-management page, click the address in question. The page that appears allows you to set a users password or mail them their existing password by clicking on &lt;br /&gt;
  &lt;br /&gt;
  &amp;quot;Email my password to me&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note all the other options you can set for the user here.&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget that members can have their password sent to them anytime they like, by clicking the appropriate button on their personal page. There is no need for you to change their password if they forgettheir password.  They just have to go to&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/LISTNAME/USERNAME%40DOMAINNAME&lt;br /&gt;
&lt;br /&gt;
EG:&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/umiacs/johndoe%40umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
===How can I restrict the list so only authorized persons can post?===&lt;br /&gt;
&lt;br /&gt;
Turn on the moderation flag for all your existing users.  Go to the membership management page, and use the Additional Member Tasks to turn on the mod flag for all users.&lt;br /&gt;
&lt;br /&gt;
Then go to Privacy Options -&amp;gt; Sender filters and set the default_member_moderation flag to Yes so that new users are automatically set as moderated.&lt;br /&gt;
&lt;br /&gt;
Set the member_moderation_action to Reject and add a nice rejection notice text to the following text box.  &lt;br /&gt;
&lt;br /&gt;
  Set the generic_nonmember_action to Reject or Discard.&lt;br /&gt;
&lt;br /&gt;
===How can someone subscribe without my doing anything?===&lt;br /&gt;
&lt;br /&gt;
They just need to go to &lt;br /&gt;
&lt;br /&gt;
  http://lists/mailman/listinfo/LISTNAME&lt;br /&gt;
&lt;br /&gt;
and fill in the form. They can also subscribe/unsubscribe by email by sending to&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-subscribe&lt;br /&gt;
&lt;br /&gt;
or to unsubscribe,&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-unsubscribe&lt;br /&gt;
&lt;br /&gt;
In ALL of the above cases, the user will receive email confirming their action. They need to just reply to the mail for this to take affect.&lt;br /&gt;
&lt;br /&gt;
===How do I unsubscribe users without them getting an unsubscribe message?===&lt;br /&gt;
&lt;br /&gt;
By default, they will not get an unsubscribe message. You need only go to the membership page and click the &amp;quot;unsub&amp;quot; button next to each of their names and press &amp;quot;submit&amp;quot;   or go to the Mass-removal subpage under Membership-management and add all the addresses into the  window and click &amp;quot;submit&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===How do I edit a held message before approving it for the list?===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Use the &amp;quot;forward this message&amp;quot; feature in the admindb page to forward the message to yourself.&lt;br /&gt;
&lt;br /&gt;
* At the same time, discard the original held message. You may want to do this later, after you&#039;re sure the message was properly forwarded to you.&lt;br /&gt;
&lt;br /&gt;
* Edit the message in your mail reader. You should include a notice in the message explaining that the list moderator has edited the message. Please use proper netiquette!&lt;br /&gt;
&lt;br /&gt;
* Resend the message to the list using a Resent-To: header containing the list posting address. Also include an Approved: header containing &lt;br /&gt;
the list&#039;s admin password.&lt;br /&gt;
&lt;br /&gt;
===How do I add users to a mailman mailing list?===&lt;br /&gt;
&lt;br /&gt;
* Login to the mailman mailing list adminstration&#039;s page use your mailman admin password&lt;br /&gt;
&lt;br /&gt;
*&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
	<entry>
		<id>https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2213</id>
		<title>MailmanFAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.umiacs.umd.edu/umiacs/index.php?title=MailmanFAQ&amp;diff=2213"/>
		<updated>2008-10-01T18:18:12Z</updated>

		<summary type="html">&lt;p&gt;Xhe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Is there an easy way to discard all messages waiting to be reviewed?===&lt;br /&gt;
&lt;br /&gt;
If you have a list where non members can post but their messages are moderated, you&#039;ll have to deal with a lot of spam. After sometime, just a small percentage of them will be good posts. &lt;br /&gt;
&lt;br /&gt;
The admindb page has a checkbox that allows you to discard all held messages that are marked Defer.  On heavy lists with lots of spam holds, this makes clearing them much faster.&lt;br /&gt;
&lt;br /&gt;
To make sure that all mail from non-members is automatically deleted, go to the privacy page followed by the sender-filter sub-page.  At the bottom of the page, set to &amp;quot;discard&amp;quot; the value for &amp;quot;Action to take for postings from non-members for which no explicit action is defined.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
On the same page, at the top, you can do the same thing for postings by members (if your list is moderated such that users can&#039;t post)&lt;br /&gt;
&lt;br /&gt;
===How do I turn off HTML messages/attachments?===&lt;br /&gt;
&lt;br /&gt;
On the admin page, go to the Content Filtering section. &lt;br /&gt;
  &lt;br /&gt;
  Change &amp;quot;Should Mailman filter ...&amp;quot; to Yes. &lt;br /&gt;
&lt;br /&gt;
If you leave the rest at default values, including&lt;br /&gt;
&lt;br /&gt;
  Yes for &amp;quot;Should Mailman convert text/html parts to plain text?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
your list will only distribute plain text messages with no attachments.&lt;br /&gt;
&lt;br /&gt;
===How can I post from 2 or more addresses to a &amp;quot;members-only&amp;quot; list?===&lt;br /&gt;
&lt;br /&gt;
If you&#039;re subscribed to a members-only list as USER@umiacs.umd.edu   and accidentally post as USER@cfar.umd.edu, your message will not go through.&lt;br /&gt;
&lt;br /&gt;
The solution is to actually subscribe both addresses to the list, but to disable delivery from all but one of the addresses. So in the above  example, I&#039;d subscribe USER@umiacs.umd.edu and USER@Ccfar.umd.edu, but I would disable delivery to USER@cfar.umd.edu.&lt;br /&gt;
&lt;br /&gt;
You can disable delivery to an address by going to the personal options page for that address and setting &amp;quot;Mail delivery&amp;quot; to &amp;quot;disabled&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
The list manager can disable delivery to an address by going to the membership page and clicking &amp;quot;no mail&amp;quot; nect to the address in question.&lt;br /&gt;
&lt;br /&gt;
===How do I change a member&#039;s password or send them their password?===&lt;br /&gt;
&lt;br /&gt;
Go to the Membership-management page, click the address in question. The page that appears allows you to set a users password or mail them their existing password by clicking on &lt;br /&gt;
  &lt;br /&gt;
  &amp;quot;Email my password to me&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Note all the other options you can set for the user here.&lt;br /&gt;
&lt;br /&gt;
Don&#039;t forget that members can have their password sent to them anytime they like, by clicking the appropriate button on their personal page. There is no need for you to change their password if they forgettheir password.  They just have to go to&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/LISTNAME/USERNAME%40DOMAINNAME&lt;br /&gt;
&lt;br /&gt;
EG:&lt;br /&gt;
&lt;br /&gt;
 http://lists.umiacs.umd.edu/mailman/options/umiacs/johndoe%40umiacs.umd.edu&lt;br /&gt;
&lt;br /&gt;
===How can I restrict the list so only authorized persons can post?===&lt;br /&gt;
&lt;br /&gt;
Turn on the moderation flag for all your existing users.  Go to the membership management page, and use the Additional Member Tasks to turn on the mod flag for all users.&lt;br /&gt;
&lt;br /&gt;
Then go to Privacy Options -&amp;gt; Sender filters and set the default_member_moderation flag to Yes so that new users are automatically set as moderated.&lt;br /&gt;
&lt;br /&gt;
Set the member_moderation_action to Reject and add a nice rejection notice text to the following text box.  &lt;br /&gt;
&lt;br /&gt;
  Set the generic_nonmember_action to Reject or Discard.&lt;br /&gt;
&lt;br /&gt;
===How can someone subscribe without my doing anything?===&lt;br /&gt;
&lt;br /&gt;
They just need to go to &lt;br /&gt;
&lt;br /&gt;
  http://lists/mailman/listinfo/LISTNAME&lt;br /&gt;
&lt;br /&gt;
and fill in the form. They can also subscribe/unsubscribe by email by sending to&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-subscribe&lt;br /&gt;
&lt;br /&gt;
or to unsubscribe,&lt;br /&gt;
&lt;br /&gt;
  LISTNAME-unsubscribe&lt;br /&gt;
&lt;br /&gt;
In ALL of the above cases, the user will receive email confirming their action. They need to just reply to the mail for this to take affect.&lt;br /&gt;
&lt;br /&gt;
===How do I unsubscribe users without them getting an unsubscribe message?===&lt;br /&gt;
&lt;br /&gt;
By default, they will not get an unsubscribe message. You need only go to the membership page and click the &amp;quot;unsub&amp;quot; button next to each of their names and press &amp;quot;submit&amp;quot;   or go to the Mass-removal subpage under Membership-management and add all the addresses into the  window and click &amp;quot;submit&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===How do I edit a held message before approving it for the list?===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Use the &amp;quot;forward this message&amp;quot; feature in the admindb page to forward the message to yourself.&lt;br /&gt;
&lt;br /&gt;
* At the same time, discard the original held message. You may want to do this later, after you&#039;re sure the message was properly forwarded to you.&lt;br /&gt;
&lt;br /&gt;
* Edit the message in your mail reader. You should include a notice in the message explaining that the list moderator has edited the message. Please use proper netiquette!&lt;br /&gt;
&lt;br /&gt;
* Resend the message to the list using a Resent-To: header containing the list posting address. Also include an Approved: header containing &lt;br /&gt;
the list&#039;s admin password.&lt;br /&gt;
&lt;br /&gt;
===How do I add users to mailman list?===&lt;/div&gt;</summary>
		<author><name>Xhe</name></author>
	</entry>
</feed>