\documentclass{article}
\usepackage{ulem}
\usepackage{graphicx}
\usepackage{hyperref}
\pagestyle{headings}
\begin{document}
\part{IMP Configuration}
\section{conf.php}
This is the file where all server-wide settings for IMP go. It is supposed to be generated through the <a href="https://wiki.horde.org/Doc/Admin">web interface</a>.

\subsection{User Capabilities and Constraints}
\subsubsection{\$conf<a href="https://wiki.horde.org/user">user</a><a href="https://wiki.horde.org/select_view">select\_view</a>}
If DIMP and MIMP are installed, the IMP login page displays a drop down list that allows the user to pick the preferred webmail view. This decision is stored in a browser cookie, so that the selected view is selected by default the next time the user logs in.<br />
With the configuration setting \texttt{\$conf[user](user)[select\_view](select\_view)} you can disable the drop down list.

There is no setting to make one of the views the default for user that have \textbf{not} logged in and picked a view yet. You can achieve the same with adding the following lines to \texttt{config/conf.php} though:

<pre><code class="language-php">
if (!isset(\$\_COOKIE['default\_imp\_view'])) \{
    \$\_COOKIE['default\_imp\_view'] = 'dimp';
\}
</code></pre>
\end{document}
