X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fright_main.php;h=7d24ede6465f3e65a4d52285561fea847c5dfffc;hb=1356041de637d8ed0e27a5377d5022c8cc657c26;hp=196342a19488cce18b57b2beeb0e55edd291b0ba;hpb=54ce41dd839b2675f7f212e422a227602858fdb4;p=squirrelmail.git diff --git a/src/right_main.php b/src/right_main.php index 196342a1..7d24ede6 100644 --- a/src/right_main.php +++ b/src/right_main.php @@ -6,7 +6,7 @@ * This is where the mailboxes are listed. This controls most of what * goes on in SquirrelMail. * - * @copyright © 1999-2006 The SquirrelMail Project Team + * @copyright © 1999-2007 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail @@ -20,6 +20,13 @@ */ include('../include/init.php'); +/* If email_address not set and admin wants us to ask user for it, + * redirect to options page. */ +if ( $ask_user_info && getPref($data_dir, $username,'email_address') == "" ) { + header("Location: " . get_location() . "/options.php?optpage=personal"); + exit; +} + /* SquirrelMail required files. */ require_once(SM_PATH . 'functions/imap_asearch.php'); require_once(SM_PATH . 'functions/imap_general.php'); @@ -27,7 +34,7 @@ require_once(SM_PATH . 'functions/imap_messages.php'); require_once(SM_PATH . 'functions/date.php'); require_once(SM_PATH . 'functions/mime.php'); require_once(SM_PATH . 'functions/mailbox_display.php'); - +require_once(SM_PATH . 'functions/compose.php'); /* lets get the global vars we may need */ sqgetGlobalVar('delimiter', $delimiter, SQ_SESSION); @@ -271,7 +278,7 @@ do_hook('right_main_after_header', $null); /* display a message to the user that their mail has been sent */ if (isset($mail_sent) && $mail_sent == 'yes') { - $note = _("Your Message has been sent."); + $note = _("Your mail has been sent."); } if (isset($note)) { $oTemplate->assign('note', htmlspecialchars($note));