File:  [LON-CAPA] / loncom / interface / lonmsg.pm
Revision 1.71: download - view: text, annotated - select for diffs
Fri Dec 5 22:14:15 2003 UTC (20 years, 6 months ago) by albertel
Branches: MAIN
CVS tags: version_1_1_X, version_1_1_1, version_1_1_0, version_1_0_99_3, version_1_0_99_2, version_1_0_99_1, HEAD
- Fixes, BUG#2419, (author's not seeing error messages), but only by converting to error messages, delaying real fix to 1.2 (BUG#2444)

    1: # The LearningOnline Network with CAPA
    2: # Routines for messaging
    3: #
    4: # $Id: lonmsg.pm,v 1.71 2003/12/05 22:14:15 albertel Exp $
    5: #
    6: # Copyright Michigan State University Board of Trustees
    7: #
    8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    9: #
   10: # LON-CAPA is free software; you can redistribute it and/or modify
   11: # it under the terms of the GNU General Public License as published by
   12: # the Free Software Foundation; either version 2 of the License, or
   13: # (at your option) any later version.
   14: #
   15: # LON-CAPA is distributed in the hope that it will be useful,
   16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   18: # GNU General Public License for more details.
   19: #
   20: # You should have received a copy of the GNU General Public License
   21: # along with LON-CAPA; if not, write to the Free Software
   22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   23: #
   24: # /home/httpd/html/adm/gpl.txt
   25: #
   26: # http://www.lon-capa.org/
   27: #
   28: #
   29: # (Routines to control the menu
   30: #
   31: # (TeX Conversion Module
   32: #
   33: # 05/29/00,05/30 Gerd Kortemeyer)
   34: #
   35: # 10/05 Gerd Kortemeyer)
   36: #
   37: # 10/19,10/20,10/30,
   38: # 02/06/01 Gerd Kortemeyer
   39: # 07/27 Guy Albertelli
   40: # 07/27,07/28,07/30,08/03,08/06,08/08,08/09,08/10,8/13,8/15,
   41: # 10/1,11/5 Gerd Kortemeyer
   42: # YEAR=2002
   43: # 1/1,3/18 Gerd Kortemeyer
   44: #
   45: package Apache::lonmsg;
   46: 
   47: =pod
   48: 
   49: =head1 NAME
   50: 
   51: Apache::lonmsg: supports internal messaging
   52: 
   53: =head1 SYNOPSIS
   54: 
   55: lonmsg provides routines for sending messages, receiving messages, and
   56: a handler to allow users to read, send, and delete messages.
   57: 
   58: =head1 OVERVIEW
   59: 
   60: =head2 Messaging Overview
   61: 
   62: X<messages>LON-CAPA provides an internal messaging system similar to
   63: email, but customized for LON-CAPA's usage. LON-CAPA implements its
   64: own messaging system, rather then building on top of email, because of
   65: the features LON-CAPA messages can offer that conventional e-mail can
   66: not:
   67: 
   68: =over 4
   69: 
   70: =item * B<Critical messages>: A message the recipient B<must>
   71: acknowlegde receipt of before they are allowed to continue using the
   72: system, preventing a user from claiming they never got a message
   73: 
   74: =item * B<Receipts>: LON-CAPA can reliably send reciepts informing the
   75: sender that it has been read; again, useful for preventing students
   76: from claiming they did not see a message. (While conventional e-mail
   77: has some reciept support, it's sporadic, e-mail client-specific, and
   78: generally the receiver can opt to not send one, making it useless in
   79: this case.)
   80: 
   81: =item * B<Context>: LON-CAPA knows about the sender, such as where
   82: they are in a course. When a student mails an instructor asking for
   83: help on the problem, the instructor receives not just the student's
   84: question, but all submissions the student has made up to that point,
   85: the user's rendering of the problem, and the complete view the student
   86: saw of the resource, including discussion up to that point. Finally,
   87: the instructor is reading all of this inside of LON-CAPA, not their
   88: email program, so they have full access to LON-CAPA's grading
   89: interface, or other features they may wish to use in response to the
   90: student's query.
   91: 
   92: =back
   93: 
   94: Users can ask LON-CAPA to forward messages to conventional e-mail
   95: addresses on their B<PREF> screen, but generally, LON-CAPA messages
   96: are much more useful then traditional email can be made to be, even
   97: with HTML support.
   98: 
   99: Right now, this document will cover just how to send a message, since
  100: it is likely you will not need to programmatically read messages,
  101: since lonmsg already implements that functionality.
  102: 
  103: =head1 FUNCTIONS
  104: 
  105: =over 4
  106: 
  107: =cut
  108: 
  109: use strict;
  110: use Apache::lonnet();
  111: use vars qw($msgcount);
  112: use HTML::TokeParser();
  113: use Apache::Constants qw(:common);
  114: use Apache::loncommon();
  115: use Apache::lontexconvert();
  116: use HTML::Entities();
  117: use Mail::Send;
  118: use Apache::lonlocal;
  119: 
  120: # Querystring component with sorting type
  121: my $sqs;
  122: 
  123: # ===================================================================== Package
  124: 
  125: sub packagemsg {
  126:     my ($subject,$message,$citation,$baseurl,$attachmenturl)=@_;
  127:     $message =&HTML::Entities::encode($message);
  128:     $citation=&HTML::Entities::encode($citation);
  129:     $subject =&HTML::Entities::encode($subject);
  130:     #remove machine specification
  131:     $baseurl =~ s|^http://[^/]+/|/|;
  132:     $baseurl =&HTML::Entities::encode($baseurl);
  133:     #remove machine specification
  134:     $attachmenturl =~ s|^http://[^/]+/|/|;
  135:     $attachmenturl =&HTML::Entities::encode($attachmenturl);
  136: 
  137:     my $now=time;
  138:     $msgcount++;
  139:     my $partsubj=$subject;
  140:     $partsubj=&Apache::lonnet::escape($partsubj);
  141:     my $msgid=&Apache::lonnet::escape(
  142:            $now.':'.$partsubj.':'.$ENV{'user.name'}.':'.
  143:            $ENV{'user.domain'}.':'.$msgcount.':'.$$);
  144:     my $result='<sendername>'.$ENV{'user.name'}.'</sendername>'.
  145:            '<senderdomain>'.$ENV{'user.domain'}.'</senderdomain>'.
  146:            '<subject>'.$subject.'</subject>'.
  147: 	   '<time>'.&Apache::lonlocal::locallocaltime($now).'</time>'.
  148: 	   '<servername>'.$ENV{'SERVER_NAME'}.'</servername>'.
  149:            '<host>'.$ENV{'HTTP_HOST'}.'</host>'.
  150: 	   '<client>'.$ENV{'REMOTE_ADDR'}.'</client>'.
  151: 	   '<browsertype>'.$ENV{'browser.type'}.'</browsertype>'.
  152: 	   '<browseros>'.$ENV{'browser.os'}.'</browseros>'.
  153: 	   '<browserversion>'.$ENV{'browser.version'}.'</browserversion>'.
  154:            '<browsermathml>'.$ENV{'browser.mathml'}.'</browsermathml>'.
  155: 	   '<browserraw>'.$ENV{'HTTP_USER_AGENT'}.'</browserraw>'.
  156: 	   '<courseid>'.$ENV{'request.course.id'}.'</courseid>'.
  157: 	   '<role>'.$ENV{'request.role'}.'</role>'.
  158: 	   '<resource>'.$ENV{'request.filename'}.'</resource>'.
  159:            '<msgid>'.$msgid.'</msgid>'.
  160: 	   '<message>'.$message.'</message>';
  161:     if (defined($citation)) {
  162: 	$result.='<citation>'.$citation.'</citation>';
  163:     }
  164:     if (defined($baseurl)) {
  165: 	$result.= '<baseurl>'.$baseurl.'</baseurl>';
  166:     }
  167:     if (defined($attachmenturl)) {
  168: 	$result.= '<attachmenturl>'.$attachmenturl.'</attachmenturl>';
  169:     }
  170:     return $msgid,$result;
  171: }
  172: 
  173: # ================================================== Unpack message into a hash
  174: 
  175: sub unpackagemsg {
  176:     my ($message,$notoken)=@_;
  177:     my %content=();
  178:     my $parser=HTML::TokeParser->new(\$message);
  179:     my $token;
  180:     while ($token=$parser->get_token) {
  181:        if ($token->[0] eq 'S') {
  182: 	   my $entry=$token->[1];
  183:            my $value=$parser->get_text('/'.$entry);
  184:            $content{$entry}=$value;
  185:        }
  186:     }
  187:     if ($content{'attachmenturl'}) {
  188:        my ($fname,$ft)=($content{'attachmenturl'}=~/\/(\w+)\.(\w+)$/);
  189:        if ($notoken) {
  190: 	   $content{'message'}.='<p>'.&mt('Attachment').': <tt>'.$fname.'.'.$ft.'</tt>';
  191:        } else {
  192: 	   $content{'message'}.='<p>'.&mt('Attachment').': <a href="'.
  193: 	       &Apache::lonnet::tokenwrapper($content{'attachmenturl'}).
  194: 	       '"><tt>'.$fname.'.'.$ft.'</tt></a>';
  195:        }
  196:     }
  197:     return %content;
  198: }
  199: 
  200: # ======================================================= Get info out of msgid
  201: 
  202: sub unpackmsgid {
  203:     my $msgid=&Apache::lonnet::unescape(shift);
  204:     my ($sendtime,$shortsubj,$fromname,$fromdomain)=split(/\:/,
  205:                           &Apache::lonnet::unescape($msgid));
  206:     my %status=&Apache::lonnet::get('email_status',[$msgid]);
  207:     if ($status{$msgid}=~/^error\:/) { $status{$msgid}=''; }
  208:     unless ($status{$msgid}) { $status{$msgid}='new'; }
  209:     return ($sendtime,$shortsubj,$fromname,$fromdomain,$status{$msgid});
  210: } 
  211: 
  212: 
  213: sub sendemail {
  214:     my ($to,$subject,$body)=@_;
  215:     $body=
  216:     "*** ".&mt('This is an automatic message generated by the LON-CAPA system.')."\n".
  217:     "*** ".&mt('Please do not reply to this address.')."\n\n".$body;
  218:     my $msg = new Mail::Send;
  219:     $msg->to($to);
  220:     $msg->subject('[LON-CAPA] '.$subject);
  221:     if (my $fh = $msg->open('smtp',Server => 'localhost')) {
  222: 	print $fh $body;
  223: 	$fh->close;
  224:     }
  225: }
  226: 
  227: # ==================================================== Send notification emails
  228: 
  229: sub sendnotification {
  230:     my ($to,$touname,$toudom,$subj,$crit)=@_;
  231:     my $sender=$ENV{'environment.firstname'}.' '.$ENV{'environment.lastname'};
  232:     my $critical=($crit?' critical':'');
  233:     my $url='http://'.
  234:       $Apache::lonnet::hostname{&Apache::lonnet::homeserver($touname,$toudom)}.
  235:       '/adm/email?username='.$touname.'&domain='.$toudom;
  236:     my $body=(<<ENDMSG);
  237: You received a$critical message from $sender in LON-CAPA. The subject is
  238: 
  239:  $subj
  240: 
  241: Use
  242: 
  243:  $url
  244: 
  245: to access this message.
  246: ENDMSG
  247:     &sendemail($to,'New'.$critical.' message from '.$sender,$body);
  248: }
  249: # ============================================================= Check for email
  250: 
  251: sub newmail {
  252:     if ((time-$ENV{'user.mailcheck.time'})>300) {
  253:         my %what=&Apache::lonnet::get('email_status',['recnewemail']);
  254:         &Apache::lonnet::appenv('user.mailcheck.time'=>time);
  255:         if ($what{'recnewemail'}>0) { return 1; }
  256:     }
  257:     return 0;
  258: }
  259: 
  260: # =============================== Automated message to the author of a resource
  261: 
  262: =pod
  263: 
  264: =item * B<author_res_msg($filename, $message)>: Sends message $message to the owner
  265:     of the resource with the URI $filename.
  266: 
  267: =cut
  268: 
  269: sub author_res_msg {
  270:     my ($filename,$message)=@_;
  271:     unless ($message) { return 'empty'; }
  272:     $filename=&Apache::lonnet::declutter($filename);
  273:     my ($domain,$author)=split(/\//,$filename);
  274:     my $homeserver=&Apache::lonnet::homeserver($author,$domain);
  275:     if ($homeserver ne 'no_host') {
  276:        my $id=unpack("%32C*",$message);
  277:        my $msgid;
  278:        ($msgid,$message)=&packagemsg("Error: [$filename]",$message);
  279:        #FIXME this should be nohist_res_msg, we need to provide an interface 
  280:        #      to this hash BUG#2444
  281:        #return &Apache::lonnet::reply('put:'.$domain.':'.$author.
  282:        #  ':nohist_res_msg:'.
  283:        #   &Apache::lonnet::escape($filename.'_'.$id).'='.
  284:        #   &Apache::lonnet::escape($message),$homeserver);
  285:        return &Apache::lonnet::reply('put:'.$domain.':'.$author.
  286: 	   ':nohist_email:'.
  287:            &Apache::lonnet::escape($msgid).'='.
  288:            &Apache::lonnet::escape($message),$homeserver);
  289:     }
  290:     return 'no_host';
  291: }
  292: 
  293: # ================================================== Critical message to a user
  294: 
  295: sub user_crit_msg_raw {
  296:     my ($user,$domain,$subject,$message,$sendback)=@_;
  297: # Check if allowed missing
  298:     my $status='';
  299:     my $msgid='undefined';
  300:     unless (($message)&&($user)&&($domain)) { $status='empty'; };
  301:     my $homeserver=&Apache::lonnet::homeserver($user,$domain);
  302:     if ($homeserver ne 'no_host') {
  303:        ($msgid,$message)=&packagemsg($subject,$message);
  304:        if ($sendback) { $message.='<sendback>true</sendback>'; }
  305:        $status=&Apache::lonnet::critical(
  306:            'put:'.$domain.':'.$user.':critical:'.
  307:            &Apache::lonnet::escape($msgid).'='.
  308:            &Apache::lonnet::escape($message),$homeserver);
  309:        if ($ENV{'request.course.id'}) {
  310:           &user_normal_msg_raw(
  311:             $ENV{'course.'.$ENV{'request.course.id'}.'.num'},
  312:             $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
  313:             'Critical ['.$user.':'.$domain.']',
  314: 	    $message);
  315:        }
  316:     } else {
  317:        $status='no_host';
  318:     }
  319: # Notifications
  320:     my %userenv = &Apache::lonnet::get('environment',['critnotification'],
  321:                                        $domain,$user);
  322:     if ($userenv{'critnotification'}) {
  323:       &sendnotification($userenv{'critnotification'},$user,$domain,$subject,1);
  324:     }
  325: # Log this
  326:     &Apache::lonnet::logthis(
  327:       'Sending critical email '.$msgid.
  328:       ', log status: '.
  329:       &Apache::lonnet::log($ENV{'user.domain'},$ENV{'user.name'},
  330:                          $ENV{'user.home'},
  331:       'Sending critical '.$msgid.' to '.$user.' at '.$domain.' with status: '
  332:       .$status));
  333:     return $status;
  334: }
  335: 
  336: # New routine that respects "forward" and calls old routine
  337: 
  338: =pod
  339: 
  340: =item * B<user_crit_msg($user, $domain, $subject, $message, $sendback)>: Sends
  341:     a critical message $message to the $user at $domain. If $sendback is true,
  342:     a reciept will be sent to the current user when $user recieves the message.
  343: 
  344: =cut
  345: 
  346: sub user_crit_msg {
  347:     my ($user,$domain,$subject,$message,$sendback)=@_;
  348:     my $status='';
  349:     my %userenv = &Apache::lonnet::get('environment',['msgforward'],
  350:                                        $domain,$user);
  351:     my $msgforward=$userenv{'msgforward'};
  352:     if ($msgforward) {
  353:        foreach (split(/\,/,$msgforward)) {
  354: 	 my ($forwuser,$forwdomain)=split(/\:/,$_);
  355:          $status.=
  356: 	   &user_crit_msg_raw($forwuser,$forwdomain,$subject,$message,
  357:                 $sendback).' ';
  358:        }
  359:     } else { 
  360: 	$status=&user_crit_msg_raw($user,$domain,$subject,$message,$sendback);
  361:     }
  362:     return $status;
  363: }
  364: 
  365: # =================================================== Critical message received
  366: 
  367: sub user_crit_received {
  368:     my $msgid=shift;
  369:     my %message=&Apache::lonnet::get('critical',[$msgid]);
  370:     my %contents=&unpackagemsg($message{$msgid},1);
  371:     my $status='rec: '.($contents{'sendback'}?
  372:      &user_normal_msg($contents{'sendername'},$contents{'senderdomain'},
  373:                      &mt('Receipt').': '.$ENV{'user.name'}.' at '.$ENV{'user.domain'},
  374:                      &mt('User').' '.$ENV{'user.name'}.' '.&mt('at').' '.$ENV{'user.domain'}.
  375:                      ' acknowledged receipt of message'."\n".'   "'.
  376:                      $contents{'subject'}.'"'."\n".&mt('dated').' '.
  377:                      $contents{'time'}.".\n"
  378:                      ):'no msg req');
  379:     $status.=' trans: '.
  380:      &Apache::lonnet::put(
  381:      'nohist_email',{$contents{'msgid'} => $message{$msgid}});
  382:     $status.=' del: '.
  383:      &Apache::lonnet::del('critical',[$contents{'msgid'}]);
  384:     &Apache::lonnet::log($ENV{'user.domain'},$ENV{'user.name'},
  385:                          $ENV{'user.home'},'Received critical message '.
  386:                          $contents{'msgid'}.
  387:                          ', '.$status);
  388:     return $status;
  389: }
  390: 
  391: # ======================================================== Normal communication
  392: 
  393: sub user_normal_msg_raw {
  394:     my ($user,$domain,$subject,$message,$citation,$baseurl,$attachmenturl)=@_;
  395: # Check if allowed missing
  396:     my $status='';
  397:     my $msgid='undefined';
  398:     unless (($message)&&($user)&&($domain)) { $status='empty'; };
  399:     my $homeserver=&Apache::lonnet::homeserver($user,$domain);
  400:     if ($homeserver ne 'no_host') {
  401:        ($msgid,$message)=&packagemsg($subject,$message,$citation,$baseurl,
  402:                                      $attachmenturl);
  403:        $status=&Apache::lonnet::critical(
  404:            'put:'.$domain.':'.$user.':nohist_email:'.
  405:            &Apache::lonnet::escape($msgid).'='.
  406:            &Apache::lonnet::escape($message),$homeserver);
  407:        &Apache::lonnet::put
  408:                          ('email_status',{'recnewemail'=>time},$domain,$user);
  409:     } else {
  410:        $status='no_host';
  411:     }
  412: # Notifications
  413:     my %userenv = &Apache::lonnet::get('environment',['notification'],
  414:                                        $domain,$user);
  415:     if ($userenv{'notification'}) {
  416: 	&sendnotification($userenv{'notification'},$user,$domain,$subject,0);
  417:     }
  418:     &Apache::lonnet::log($ENV{'user.domain'},$ENV{'user.name'},
  419:                          $ENV{'user.home'},
  420:       'Sending '.$msgid.' to '.$user.' at '.$domain.' with status: '.$status);
  421:     return $status;
  422: }
  423: 
  424: # New routine that respects "forward" and calls old routine
  425: 
  426: =pod
  427: 
  428: =item * B<user_normal_msg($user, $domain, $subject, $message,
  429:     $citation, $baseurl, $attachmenturl)>: Sends a message to the
  430:     $user at $domain, with subject $subject and message $message.
  431: 
  432: =cut
  433: 
  434: sub user_normal_msg {
  435:     my ($user,$domain,$subject,$message,$citation,$baseurl,$attachmenturl)=@_;
  436:     my $status='';
  437:     my %userenv = &Apache::lonnet::get('environment',['msgforward'],
  438:                                        $domain,$user);
  439:     my $msgforward=$userenv{'msgforward'};
  440:     if ($msgforward) {
  441:        foreach (split(/\,/,$msgforward)) {
  442: 	 my ($forwuser,$forwdomain)=split(/\:/,$_);
  443:          $status.=
  444: 	  &user_normal_msg_raw($forwuser,$forwdomain,$subject,$message,
  445: 			       $citation,$baseurl,$attachmenturl).' ';
  446:        }
  447:     } else { 
  448: 	$status=&user_normal_msg_raw($user,$domain,$subject,$message,
  449: 				     $citation,$baseurl,$attachmenturl);
  450:     }
  451:     return $status;
  452: }
  453: 
  454: 
  455: # =============================================================== Status Change
  456: 
  457: sub statuschange {
  458:     my ($msgid,$newstatus)=@_;
  459:     my %status=&Apache::lonnet::get('email_status',[$msgid]);
  460:     if ($status{$msgid}=~/^error\:/) { $status{$msgid}=''; }
  461:     unless ($status{$msgid}) { $status{$msgid}='new'; }
  462:     unless (($status{$msgid} eq 'replied') || 
  463:             ($status{$msgid} eq 'forwarded')) {
  464: 	&Apache::lonnet::put('email_status',{$msgid => $newstatus});
  465:     }
  466:     if (($newstatus eq 'deleted') || ($newstatus eq 'new')) {
  467: 	&Apache::lonnet::put('email_status',{$msgid => $newstatus});
  468:     }
  469: }
  470: 
  471: # ======================================================= Display a course list
  472: 
  473: sub discourse {
  474:     my $r=shift;
  475:     my %courselist=&Apache::lonnet::dump(
  476:                    'classlist',
  477: 		   $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
  478: 		   $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
  479:     my $now=time;
  480:     my %lt=&Apache::lonlocal::texthash('cfa' => 'Check for All',
  481:             'cfs' => 'Check for Section/Group',
  482:             'cfn' => 'Check for None');
  483:     $r->print(<<ENDDISHEADER);
  484: <input type=hidden name=sendmode value=group>
  485: <script>
  486:     function checkall() {
  487: 	for (i=0; i<document.forms.compemail.elements.length; i++) {
  488:             if 
  489:           (document.forms.compemail.elements[i].name.indexOf('send_to_')==0) {
  490: 	      document.forms.compemail.elements[i].checked=true;
  491:             }
  492:         }
  493:     }
  494: 
  495:     function checksec() {
  496: 	for (i=0; i<document.forms.compemail.elements.length; i++) {
  497:             if 
  498:           (document.forms.compemail.elements[i].name.indexOf
  499:            ('send_to_&&&'+document.forms.compemail.chksec.value)==0) {
  500: 	      document.forms.compemail.elements[i].checked=true;
  501:             }
  502:         }
  503:     }
  504: 
  505:     function uncheckall() {
  506: 	for (i=0; i<document.forms.compemail.elements.length; i++) {
  507:             if 
  508:           (document.forms.compemail.elements[i].name.indexOf('send_to_')==0) {
  509: 	      document.forms.compemail.elements[i].checked=false;
  510:             }
  511:         }
  512:     }
  513: </script>
  514: <input type=button onClick="checkall()" value="$lt{'cfa'}">&nbsp;
  515: <input type=button onClick="checksec()" value="$lt{'cfs'}">
  516: <input type=text size=5 name=chksec>&nbsp;
  517: <input type=button onClick="uncheckall()" value="$lt{'cfn'}">
  518: <p>
  519: ENDDISHEADER
  520:     my %coursepersonnel=
  521:        &Apache::lonnet::get_course_adv_roles();
  522:     foreach my $role (sort keys %coursepersonnel) {
  523:        foreach (split(/\,/,$coursepersonnel{$role})) {
  524: 	   my ($puname,$pudom)=split(/\:/,$_);
  525: 	   $r->print(
  526:              '<br /><input type="checkbox" name="send_to_&&&&&&_'.
  527:              $puname.':'.$pudom.'" /> '.
  528: 		     &Apache::loncommon::plainname($puname,
  529:                           $pudom).' ('.$_.'), <i>'.$role.'</i>');
  530: 	}
  531:     }
  532: 
  533:     foreach (sort keys %courselist) {
  534:         my ($end,$start)=split(/\:/,$courselist{$_});
  535:         my $active=1;
  536:         if (($end) && ($now>$end)) { $active=0; }
  537:         if ($active) {
  538:            my ($sname,$sdom)=split(/\:/,$_);
  539:            my %reply=&Apache::lonnet::get('environment',
  540:               ['firstname','middlename','lastname','generation'],
  541:               $sdom,$sname);
  542:            my $section=&Apache::lonnet::usection
  543: 	       ($sdom,$sname,$ENV{'request.course.id'});
  544:            $r->print(
  545:         '<br><input type=checkbox name="send_to_&&&'.$section.'&&&_'.$_.'"> '.
  546: 		      $reply{'firstname'}.' '. 
  547:                       $reply{'middlename'}.' '.
  548:                       $reply{'lastname'}.' '.
  549:                       $reply{'generation'}.
  550:                       ' ('.$_.') '.$section);
  551:         } 
  552:     }
  553: }
  554: 
  555: # ==================================================== Display Critical Message
  556: 
  557: sub discrit {
  558:     my $r=shift;
  559:     my $header = '<h1><font color=red>'.&mt('Critical Messages').'</font></h1>'.
  560:         '<form action=/adm/email method=post>'.
  561:         '<input type=hidden name=confirm value=true>';
  562:     my %what=&Apache::lonnet::dump('critical');
  563:     my $result = '';
  564:     foreach (sort keys %what) {
  565:         my %content=&unpackagemsg($what{$_});
  566:         next if ($content{'senderdomain'} eq '');
  567:         $content{'message'}=~s/\n/\<br\>/g;
  568:         $result.='<hr>'.&mt('From').': <b>'.
  569: &Apache::loncommon::aboutmewrapper(
  570:  &Apache::loncommon::plainname($content{'sendername'},$content{'senderdomain'}),$content{'sendername'},$content{'senderdomain'}).'</b> ('.
  571: $content{'sendername'}.'@'.
  572:             $content{'senderdomain'}.') '.$content{'time'}.
  573:             '<br>'.&mt('Subject').': '.$content{'subject'}.
  574:             '<br><blockquote>'.
  575:               &Apache::lontexconvert::msgtexconverted($content{'message'}).
  576:             '</blockquote>'.
  577:             '<input type=submit name="rec_'.$_.'" value="'.&mt('Confirm Receipt').'">'.
  578:             '<input type=submit name="reprec_'.$_.'" '.
  579:                   'value="'.&mt('Confirm Receipt and Reply').'">';
  580:     }
  581:     # Check to see if there were any messages.
  582:     if ($result eq '') {
  583:         $result = "<h2>".&mt('You have no critical messages.')."</h2>".
  584: 	    '<a href="/adm/roles">'.&mt('Select a course').'</a>';
  585:     } else {
  586:         $r->print($header);
  587:     }
  588:     $r->print($result);
  589:     $r->print('<input type=hidden name="displayedcrit" value="true"></form>');
  590: }
  591: 
  592: # =============================================================== Compose reply
  593: 
  594: sub comprep {
  595:     my ($r,$msgid)=@_;
  596:       my %message=&Apache::lonnet::get('nohist_email',[$msgid]);
  597:       my %content=&unpackagemsg($message{$msgid},1);
  598:       my $quotemsg='> '.$content{'message'};
  599:       $quotemsg=~s/\r/\n/g;
  600:       $quotemsg=~s/\f/\n/g;
  601:       $quotemsg=~s/\n+/\n\> /g;
  602:       my $torepl=&Apache::loncommon::aboutmewrapper(
  603:  &Apache::loncommon::plainname($content{'sendername'},$content{'senderdomain'}),$content{'sendername'},$content{'senderdomain'}).' ('.
  604: $content{'sendername'}.'@'.
  605:             $content{'senderdomain'}.')';
  606:       my $subject=&mt('Re').': '.$content{'subject'};
  607:       my $dispcrit='';
  608:       if (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) {
  609: 	 my $crithelp = Apache::loncommon::help_open_topic("Course_Critical_Message");
  610:          $dispcrit=
  611:  '<input type=checkbox name=critmsg> '.&mt('Send as critical message').' ' . $crithelp . 
  612:  '<br>'.
  613:  '<input type=checkbox name=sendbck> '.&mt('Send as critical message').' ' .
  614:  &mt('and return receipt') . $crithelp . '<p>';
  615:       }
  616:     my %lt=&Apache::lonlocal::texthash(
  617: 				   'to' => 'To',
  618: 				   'sb' => 'Subject',
  619: 				   'sr' => 'Send Reply',
  620: 				   'ca' => 'Cancel'
  621: 				   );
  622:       $r->print(<<"ENDREPLY");
  623: <form action="/adm/email" method="post">
  624: <input type="hidden" name="sendreply" value="$msgid">
  625: $lt{'to'}: $torepl<br />
  626: $lt{'sb'}: <input type="text" size=50 name="subject" value="$subject"><p>
  627: <textarea name="message" cols="84" rows="10" wrap="hard">
  628: $quotemsg
  629: </textarea></p><br />
  630: $dispcrit
  631: <input type="submit" name="send" value="$lt{'sr'}" />
  632: <input type="submit" name="cancel" value="$lt{'ca'}"/ >
  633: </form>
  634: ENDREPLY
  635: }
  636: 
  637: sub sortedmessages {
  638:     my @messages = &Apache::lonnet::getkeys('nohist_email');
  639:     #unpack the varibles and repack into temp for sorting
  640:     my @temp;
  641:     foreach (@messages) {
  642: 	my $msgid=&Apache::lonnet::escape($_);
  643: 	my ($sendtime,$shortsubj,$fromname,$fromdomain,$status)=
  644: 	    &Apache::lonmsg::unpackmsgid($msgid);
  645: 	my @temp1 = ($sendtime,$shortsubj,$fromname,$fromdomain,$status,
  646: 		     $msgid);
  647: 	push @temp ,\@temp1;
  648:     }
  649:     #default sort
  650:     @temp = sort  {$a->[0] <=> $b->[0]} @temp;    
  651:     if ($ENV{'form.sortedby'} eq "date"){
  652:         @temp = sort  {$a->[0] <=> $b->[0]} @temp;    
  653:     }
  654:     if ($ENV{'form.sortedby'} eq "revdate"){
  655:     	@temp = sort  {$b->[0] <=> $a->[0]} @temp; 
  656:     }
  657:     if ($ENV{'form.sortedby'} eq "user"){
  658: 	@temp = sort  {lc($a->[2]) cmp lc($b->[2])} @temp;
  659:     }
  660:     if ($ENV{'form.sortedby'} eq "revuser"){
  661: 	@temp = sort  {lc($b->[2]) cmp lc($a->[2])} @temp;
  662:     }
  663:     if ($ENV{'form.sortedby'} eq "domain"){
  664:         @temp = sort  {$a->[3] cmp $b->[3]} @temp;
  665:     }
  666:     if ($ENV{'form.sortedby'} eq "revdomain"){
  667:         @temp = sort  {$b->[3] cmp $a->[3]} @temp;
  668:     }
  669:     if ($ENV{'form.sortedby'} eq "subject"){
  670:         @temp = sort  {lc($a->[1]) cmp lc($b->[1])} @temp;
  671:     }
  672:     if ($ENV{'form.sortedby'} eq "revsubject"){
  673:         @temp = sort  {lc($b->[1]) cmp lc($a->[1])} @temp;
  674:     }
  675:     if ($ENV{'form.sortedby'} eq "status"){
  676:         @temp = sort  {$a->[4] cmp $b->[4]} @temp;
  677:     }
  678:     if ($ENV{'form.sortedby'} eq "revstatus"){
  679:         @temp = sort  {$b->[4] cmp $a->[4]} @temp;
  680:     }
  681:     return @temp;
  682: }
  683: 
  684: # ======================================================== Display all messages
  685: 
  686: sub disall {
  687:     my $r=shift;
  688:      $r->print(<<ENDDISHEADER);
  689: <script>
  690:     function checkall() {
  691: 	for (i=0; i<document.forms.disall.elements.length; i++) {
  692:             if 
  693:           (document.forms.disall.elements[i].name.indexOf('delmark_')==0) {
  694: 	      document.forms.disall.elements[i].checked=true;
  695:             }
  696:         }
  697:     }
  698: 
  699:     function uncheckall() {
  700: 	for (i=0; i<document.forms.disall.elements.length; i++) {
  701:             if 
  702:           (document.forms.disall.elements[i].name.indexOf('delmark_')==0) {
  703: 	      document.forms.disall.elements[i].checked=false;
  704:             }
  705:         }
  706:     }
  707: </script>
  708: ENDDISHEADER
  709:     $r->print('<h1>'.&mt('Display All Messages').'</h1><form method=post name=disall '.
  710: 	      'action="/adm/email">'.
  711: 	      '<table border=2><tr><th colspan=2>&nbsp</th><th>');
  712:     if ($ENV{'form.sortedby'} eq "revdate") {
  713: 	$r->print('<a href = "?sortedby=date">'.&mt('Date').'</a></th>');
  714:     } else {
  715: 	$r->print('<a href = "?sortedby=revdate">'.&mt('Date').'</a></th>');
  716:     }
  717:     $r->print('<th>');
  718:     if ($ENV{'form.sortedby'} eq "revuser") {
  719: 	$r->print('<a href = "?sortedby=user">'.&mt('Username').'</a>');
  720:     } else {
  721: 	$r->print('<a href = "?sortedby=revuser">'.&mt('Username').'</a>');
  722:     }
  723:     $r->print('</th><th>');
  724:     if ($ENV{'form.sortedby'} eq "revdomain") {
  725: 	$r->print('<a href = "?sortedby=domain">'.&mt('Domain').'</a>');
  726:     } else {
  727: 	$r->print('<a href = "?sortedby=revdomain">'.&mt('Domain').'</a>');
  728:     }
  729:     $r->print('</th><th>');
  730:     if ($ENV{'form.sortedby'} eq "revsubject") {
  731: 	$r->print('<a href = "?sortedby=subject">'.&mt('Subject').'</a>');
  732:     } else {
  733:     	$r->print('<a href = "?sortedby=revsubject">'.&mt('Subject').'</a>');
  734:     }
  735:     $r->print('</th><th>');
  736:     if ($ENV{'form.sortedby'} eq "revstatus") {
  737: 	$r->print('<a href = "?sortedby=status">'.&mt('Status').'</th>');
  738:     } else {
  739:      	$r->print('<a href = "?sortedby=revstatus">'.&mt('Status').'</th>');
  740:     }
  741:     $r->print('</tr>');
  742:     my @temp=sortedmessages();
  743:     foreach (@temp){
  744: 	my ($sendtime,$shortsubj,$fromname,$fromdomain,$status,$origID)= @$_;
  745: 	if (($status ne 'deleted') && defined($sendtime) && $sendtime!~/error/) {
  746: 	    if ($status eq 'new') {
  747: 		$r->print('<tr bgcolor="#FFBB77">');
  748: 	    } elsif ($status eq 'read') {
  749: 		$r->print('<tr bgcolor="#BBBB77">');
  750: 	    } elsif ($status eq 'replied') {
  751: 		$r->print('<tr bgcolor="#AAAA88">'); 
  752: 	    } else {
  753: 		$r->print('<tr bgcolor="#99BBBB">');
  754: 	    }
  755: 	    $r->print('<td><a href="/adm/email?display='.$origID.$sqs. 
  756: 		      '">'.&mt('Open').'</a></td><td><a href="/adm/email?markdel='.$origID.$sqs.
  757: 		      '">'.&mt('Delete').'</a><input type=checkbox name="delmark_'.$origID.'"></td>'.
  758: 		      '<td>'.&Apache::lonlocal::locallocaltime($sendtime).'</td><td>'.
  759: 		      $fromname.'</td><td>'.$fromdomain.'</td><td>'.
  760: 		      &Apache::lonnet::unescape($shortsubj).'</td><td>'.
  761:                       $status.'</td></tr>');
  762: 	}
  763:     }   
  764:     $r->print('</table><p>'.
  765:               '<a href="javascript:checkall()">'.&mt('Check All').'</a>&nbsp;'.
  766:               '<a href="javascript:uncheckall()">'.&mt('Uncheck All').'</a><p>'.
  767: 	      '<input type="hidden" name="sortedby" value="'.$ENV{'form.sortedby'}.'" />'.
  768:               '<input type=submit name="markeddel" value="'.&mt('Delete Checked').'">'.
  769:               '</form></body></html>');
  770: }
  771: 
  772: # ============================================================== Compose output
  773: 
  774: sub compout {
  775:     my ($r,$forwarding,$broadcast)=@_;
  776:       my $dispcrit='';
  777:     my $dissub='';
  778:     my $dismsg='';
  779:     my $func=&mt('Send New');
  780:     my %lt=&Apache::lonlocal::texthash('us' => 'Username',
  781: 				       'do' => 'Domain',
  782: 				       'ad' => 'Additional Recipients',
  783: 				       'sb' => 'Subject',
  784: 				       'ca' => 'Cancel',
  785: 				       'ma' => 'Mail');
  786: 
  787:     if (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) {
  788: 	 my $crithelp = Apache::loncommon::help_open_topic("Course_Critical_Message");
  789:          $dispcrit=
  790:  '<input type="checkbox" name="critmsg"> '.&mt('Send as critical message').' ' . $crithelp . 
  791:  '<br>'.
  792:  '<input type="checkbox" name="sendbck"> '.&mt('Send as critical message').'  ' .
  793:  &mt('and return receipt') . $crithelp . '<p>';
  794:       }
  795:     if ($forwarding) {
  796:        $dispcrit.='<input type="hidden" name="forwid" value="'.
  797: 	   $forwarding.'">';
  798:        $func=&mt('Forward');
  799:       my %message=&Apache::lonnet::get('nohist_email',[$forwarding]);
  800:       my %content=&unpackagemsg($message{$forwarding});
  801: 
  802:        $dissub=&mt('Forwarding').': '.$content{'subject'};
  803:        $dismsg=&mt('Forwarded message from').' '.
  804: 	   $content{'sendername'}.' '.&mt('at').' '.$content{'senderdomain'};
  805:     }
  806:     my $defdom=$ENV{'user.domain'};
  807:     if ($ENV{'form.recdom'}) { $defdom=$ENV{'form.recdom'}; }
  808:       $r->print(
  809:                 '<form action="/adm/email"  name="compemail" method="post"'.
  810:                 ' enctype="multipart/form-data">'."\n".
  811:                 '<input type="hidden" name="sendmail" value="on">'."\n".
  812:                 '<table>');
  813:     unless (($broadcast eq 'group') || ($broadcast eq 'upload')) {
  814:         my $domform = &Apache::loncommon::select_dom_form($defdom,'recdomain');
  815:         my $selectlink=&Apache::loncommon::selectstudent_link
  816: 	    ('compemail','recuname','recdomain');
  817:        $r->print(<<"ENDREC");
  818: <table>
  819: <tr><td>$lt{'us'}:</td><td><input type="text" size="12" name="recuname" value="$ENV{'form.recname'}"></td><td rowspan="2">$selectlink</td></tr>
  820: <tr><td>$lt{'do'}:</td>
  821: <td>$domform</td></tr>
  822: ENDREC
  823:     }
  824:     my $latexHelp = Apache::loncommon::helpLatexCheatsheet();
  825:     if ($broadcast ne 'upload') {
  826:        $r->print(<<"ENDCOMP");
  827: <tr><td>$lt{'ad'}<br /><tt>username\@domain,username\@domain, ...
  828: </tt></td><td>
  829: <input type="text" size="50" name="additionalrec"></td></tr>
  830: <tr><td>$lt{'sb'}:</td><td><input type="text" size="50" name="subject" value="$dissub">
  831: </td></tr></table>
  832: $latexHelp
  833: <textarea name="message" cols="80" rows="10" wrap="hard">$dismsg
  834: </textarea></p><br />
  835: $dispcrit
  836: <input type="submit" name="send" value="$func $lt{'ma'}" />
  837: <input type="submit" name="cancel" value="$lt{'ca'}" />
  838: ENDCOMP
  839:     } else { # $broadcast is 'upload'
  840: 	$r->print(<<ENDUPLOAD);
  841: <input type=hidden name=sendmode value=upload>
  842: <h3>Generate messages from a file</h3>
  843: <p>
  844: Subject: <input type=text size=50 name=subject>
  845: </p>
  846: <p>General message text<br />
  847: <textarea name=message cols=60 rows=10 wrap=hard>$dismsg
  848: </textarea></p>
  849: <p>
  850: The file format for the uploaded portion of the message is:
  851: <pre>
  852: username1\@domain1: text
  853: username2\@domain2: text
  854: username3\@domain1: text
  855: </pre>
  856: </p>
  857: <p>
  858: The messages will be assembled from all lines with the respective 
  859: <tt>username\@domain</tt>, and appended to the general message text.</p>
  860: <p>
  861: <input type=file name=upfile size=20><p>
  862: $dispcrit
  863: <input type=submit value="Upload and send">
  864: ENDUPLOAD
  865:     }
  866:     if ($broadcast eq 'group') {
  867:        &discourse;
  868:     }
  869:     $r->print('</form>');
  870: }
  871: 
  872: # ---------------------------------------------------- Display all face to face
  873: 
  874: sub disfacetoface {
  875:     my ($r,$user,$domain)=@_;
  876:     unless ($ENV{'request.course.id'}) { return; }
  877:     unless (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) {
  878: 	return;
  879:     }
  880:     my %records=&Apache::lonnet::dump('nohist_email',
  881: 			 $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
  882: 			 $ENV{'course.'.$ENV{'request.course.id'}.'.num'},
  883:                          '%255b'.$user.'%253a'.$domain.'%255d');
  884:     my $result='';
  885:     foreach (sort keys %records) {
  886:         my %content=&unpackagemsg($records{$_});
  887:         next if ($content{'senderdomain'} eq '');
  888:         $content{'message'}=~s/\n/\<br\>/g;
  889:         if ($content{'subject'}=~/^Record/) {
  890: 	    $result.='<h3>'.&mt('Record').'</h3>';
  891:         } else {
  892:             $result.='<h3>'.&mt('Sent Message').'</h3>';
  893:             %content=&unpackagemsg($content{'message'});
  894:             $content{'message'}=
  895:                 '<b>Subject: '.$content{'subject'}.'</b><br />'.
  896: 		$content{'message'};
  897:         }
  898:         $result.=&mt('By').': <b>'.
  899: &Apache::loncommon::aboutmewrapper(
  900:  &Apache::loncommon::plainname($content{'sendername'},$content{'senderdomain'}),$content{'sendername'},$content{'senderdomain'}).'</b> ('.
  901: $content{'sendername'}.'@'.
  902:             $content{'senderdomain'}.') '.$content{'time'}.
  903:             '<br><blockquote>'.
  904:               &Apache::lontexconvert::msgtexconverted($content{'message'}).
  905: 	      '</blockquote>';
  906:      }
  907:     # Check to see if there were any messages.
  908:     if ($result eq '') {
  909:         $r->print("<p><b>No notes, face-to-face discussion records, or critical messages in this course.</b></p>");
  910:     } else {
  911:        $r->print($result);
  912:     }
  913: }
  914: 
  915: # ---------------------------------------------------------------- Face to face
  916: 
  917: sub facetoface {
  918:     my ($r,$stage)=@_;
  919:     unless (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) {
  920: 	return;
  921:     }
  922: # from query string
  923:     if ($ENV{'form.recname'}) { $ENV{'form.recuname'}=$ENV{'form.recname'}; }
  924:     if ($ENV{'form.recdom'}) { $ENV{'form.recdomain'}=$ENV{'form.recdom'}; }
  925: 
  926:     my $defdom=$ENV{'user.domain'};
  927: # already filled in
  928:     if ($ENV{'form.recdomain'}) { $defdom=$ENV{'form.recdomain'}; }
  929: # generate output
  930:     my $domform = &Apache::loncommon::select_dom_form($defdom,'recdomain');
  931:     my $stdbrws = &Apache::loncommon::selectstudent_link
  932: 	('stdselect','recuname','recdomain');
  933:     $r->print(<<"ENDTREC");
  934: <h3>User Notes, Records of Face-To-Face Discussions, and Critical Messages in Course</h3>
  935: <form method="post" action="/adm/email" name="stdselect">
  936: <input type="hidden" name="recordftf" value="retrieve" />
  937: <table>
  938: <tr><td>Username:</td><td><input type=text size=12 name=recuname value="$ENV{'form.recuname'}"></td>
  939: <td rowspan="2">
  940: $stdbrws
  941: <input type="submit" value="Retrieve discussion and message records"></td>
  942: </tr>
  943: <tr><td>Domain:</td>
  944: <td>$domform</td></tr>
  945: </table>
  946: </form>
  947: ENDTREC
  948:     if (($stage ne 'query') &&
  949:         ($ENV{'form.recdomain'}) && ($ENV{'form.recuname'})) {
  950:         chomp($ENV{'form.newrecord'});
  951:         if ($ENV{'form.newrecord'}) {
  952:            &user_normal_msg_raw(
  953:             $ENV{'course.'.$ENV{'request.course.id'}.'.num'},
  954:             $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
  955:             'Record ['.$ENV{'form.recuname'}.':'.$ENV{'form.recdomain'}.']',
  956: 	    $ENV{'form.newrecord'});
  957:         }
  958:         $r->print('<h3>'.&Apache::loncommon::plainname($ENV{'form.recuname'},
  959: 				     $ENV{'form.recdomain'}).'</h3>');
  960:         &disfacetoface($r,$ENV{'form.recuname'},$ENV{'form.recdomain'});
  961: 	$r->print(<<ENDRHEAD);
  962: <form method="post" action="/adm/email">
  963: <input name="recdomain" value="$ENV{'form.recdomain'}" type="hidden" />
  964: <input name="recuname" value="$ENV{'form.recuname'}" type="hidden" />
  965: ENDRHEAD
  966:         $r->print(<<ENDBFORM);
  967: <hr />New Record (record is visible to course faculty and staff)<br />
  968: <textarea name="newrecord" cols="80" rows="10" wrap="hard"></textarea>
  969: <br />
  970: <input type="hidden" name="recordftf" value="post" />
  971: <input type="submit" value="Post this record" />
  972: </form>
  973: ENDBFORM
  974:     }
  975: }
  976: 
  977: # ===================================================================== Handler
  978: 
  979: sub handler {
  980:     my $r=shift;
  981: 
  982: # ----------------------------------------------------------- Set document type
  983: 
  984:   &Apache::loncommon::content_type($r,'text/html');
  985:   $r->send_http_header;
  986: 
  987:   return OK if $r->header_only;
  988: 
  989: # --------------------------- Get query string for limited number of parameters
  990:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
  991:         ['display','replyto','forward','markread','markdel','markunread',
  992:          'sendreply','compose','sendmail','critical','recname','recdom',
  993:          'recordftf','sortedby']);
  994:     $sqs='&sortedby='.$ENV{'form.sortedby'};
  995: # ------------------------------------------------------ They checked for email
  996:   &Apache::lonnet::put('email_status',{'recnewemail'=>0});
  997: # --------------------------------------------------------------- Render Output
  998:   if (!$ENV{'form.display'}) {
  999:       $r->print('<html><head><title>EMail and Messaging</title>'.
 1000: 		&Apache::loncommon::studentbrowser_javascript().'</head>'.
 1001: 		&Apache::loncommon::bodytag('EMail and Messages'));
 1002:   }
 1003:   if ($ENV{'form.display'}) {
 1004:       my $msgid=$ENV{'form.display'};
 1005:       &statuschange($msgid,'read');
 1006:       my %message=&Apache::lonnet::get('nohist_email',[$msgid]);
 1007:       my %content=&unpackagemsg($message{$msgid});
 1008: # info to generate "next" and "previous" buttons
 1009:       my @messages=&sortedmessages();
 1010:       my $counter=0;
 1011:       $r->print('<pre>');
 1012:       my $escmsgid=&Apache::lonnet::escape($msgid);
 1013:       foreach (@messages) {
 1014:  	  if ($_->[5] eq $escmsgid){
 1015:  	      last;
 1016:  	  }
 1017:  	  $counter++;
 1018:       }
 1019:       $r->print('</pre>');
 1020:       my $number_of_messages = scalar(@messages); #subtract 1 for last index
 1021: # start output
 1022:       $r->print('<html><head><title>EMail and Messaging</title>');
 1023:       if (defined($content{'baseurl'})) {
 1024: 	  $r->print("<base href=\"http://$ENV{'SERVER_NAME'}/$content{'baseurl'}\" />");
 1025:       }
 1026:       $r->print(&Apache::loncommon::studentbrowser_javascript().
 1027: 		'</head>'.
 1028: 		&Apache::loncommon::bodytag('EMail and Messages'));
 1029:       $r->print('<b>'.&mt('Subject').':</b> '.$content{'subject'}.
 1030:              '<br><b>'.&mt('From').':</b> '.
 1031: &Apache::loncommon::aboutmewrapper(
 1032: &Apache::loncommon::plainname($content{'sendername'},$content{'senderdomain'}),
 1033: $content{'sendername'},$content{'senderdomain'}).' ('.
 1034:                                  $content{'sendername'}.' at '.
 1035:                                  $content{'senderdomain'}.') '.
 1036:              '<br><b>'.&mt('Time').':</b> '.$content{'time'}.'<p>'.
 1037:              '<table border=2><tr bgcolor="#FFFFAA"><td>'.&mt('Functions').':</td>'.
 1038:            '<td><a href="/adm/email?replyto='.&Apache::lonnet::escape($msgid).$sqs.
 1039:              '"><b>'.&mt('Reply').'</b></a></td>'.
 1040:            '<td><a href="/adm/email?forward='.&Apache::lonnet::escape($msgid).$sqs.
 1041:              '"><b>'.&mt('Forward').'</b></a></td>'.
 1042:         '<td><a href="/adm/email?markunread='.&Apache::lonnet::escape($msgid).$sqs.
 1043:              '"><b>'.&mt('Mark Unread').'</b></a></td>'.
 1044:         '<td><a href="/adm/email?markdel='.&Apache::lonnet::escape($msgid).$sqs.
 1045:              '"><b>Delete</b></a></td>'.
 1046: 		'<td><a href="/adm/email?sortedby='.$ENV{'form.sortedby'}.
 1047: 		'"><b>'.&mt('Display all Messages').'</b></a></td>');
 1048:       if ($counter > 0){
 1049:  	  $r->print('<td><a href="/adm/email?display='.$messages[$counter-1]->[5].$sqs.
 1050:            '"><b>'.&mt('Previous').'</b></a></td>');
 1051:        }
 1052:        if ($counter < $number_of_messages - 1){
 1053:  	  $r->print('<td><a href="/adm/email?display='.$messages[$counter+1]->[5].$sqs.
 1054:            '"><b>'.&mt('Next').'</b></a></td>');
 1055:        }
 1056:        $r->print('</tr></table><p><pre>'.
 1057:              &Apache::lontexconvert::msgtexconverted($content{'message'}).
 1058:              '</pre><hr>'.$content{'citation'});
 1059:   } elsif ($ENV{'form.replyto'}) {
 1060:       &comprep($r,$ENV{'form.replyto'});
 1061:   } elsif ($ENV{'form.sendreply'}) {
 1062:       if ($ENV{'form.send'}) {
 1063: 	  my $msgid=$ENV{'form.sendreply'};
 1064: 	  my %message=&Apache::lonnet::get('nohist_email',[$msgid]);
 1065: 	  my %content=&unpackagemsg($message{$msgid},1);
 1066: 	  &statuschange($msgid,'replied');
 1067: 	  if ((($ENV{'form.critmsg'}) || ($ENV{'form.sendbck'})) && 
 1068: 	      (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'}))) {
 1069: 	      $r->print(&mt('Sending critical message').': '.
 1070: 			&user_crit_msg($content{'sendername'},
 1071: 				       $content{'senderdomain'},
 1072: 				       &Apache::lonfeedback::clear_out_html($ENV{'form.subject'}),
 1073: 				       &Apache::lonfeedback::clear_out_html($ENV{'form.message'}),
 1074: 				       $ENV{'form.sendbck'}));
 1075: 	  } else {
 1076: 	      $r->print(&mt('Sending').': '.&user_normal_msg($content{'sendername'},
 1077: 							     $content{'senderdomain'},
 1078: 							     &Apache::lonfeedback::clear_out_html($ENV{'form.subject'}),
 1079: 							     &Apache::lonfeedback::clear_out_html($ENV{'form.message'})));
 1080: 	  }
 1081:       }
 1082:       if ($ENV{'form.displayedcrit'}) {
 1083:           &discrit($r);
 1084:       } else {
 1085: 	  &disall($r);
 1086:       }
 1087:   } elsif ($ENV{'form.confirm'}) {
 1088:       foreach (keys %ENV) {
 1089:           if ($_=~/^form\.rec\_(.*)$/) {
 1090: 	      $r->print('<b>Confirming Receipt:</b> '.
 1091:                         &user_crit_received($1).'<br>');
 1092:           }
 1093:           if ($_=~/^form\.reprec\_(.*)$/) {
 1094:               my $msgid=$1;
 1095: 	      $r->print('<b>Confirming Receipt:</b> '.
 1096:                         &user_crit_received($msgid).'<br>');
 1097:               &comprep($r,$msgid);
 1098:           }
 1099:       }
 1100:       &discrit($r);
 1101:   } elsif ($ENV{'form.critical'}) {
 1102:       &discrit($r);
 1103:   } elsif ($ENV{'form.forward'}) {
 1104:       &compout($r,$ENV{'form.forward'});
 1105:   } elsif ($ENV{'form.markread'}) {
 1106:   } elsif ($ENV{'form.markdel'}) {
 1107:       &statuschange($ENV{'form.markdel'},'deleted');
 1108:       &disall($r);
 1109:   } elsif ($ENV{'form.markeddel'}) {
 1110:       my $total=0;
 1111:       foreach (keys %ENV) {
 1112:           if ($_=~/^form\.delmark_(.*)$/) {
 1113: 	      &statuschange(&Apache::lonnet::unescape($1),'deleted');
 1114:               $total++;
 1115:           }
 1116:       }
 1117:       $r->print('Deleted '.$total.' message(s)<p>');
 1118:       &disall($r);
 1119:   } elsif ($ENV{'form.markunread'}) {
 1120:       &statuschange($ENV{'form.markunread'},'new');
 1121:       &disall($r);
 1122:   } elsif ($ENV{'form.compose'}) {
 1123:       &compout($r,'',$ENV{'form.compose'});
 1124:   } elsif ($ENV{'form.recordftf'}) {
 1125:       &facetoface($r,$ENV{'form.recordftf'});
 1126:   } elsif ($ENV{'form.sendmail'}) {
 1127:       my $sendstatus='';
 1128:       if ($ENV{'form.send'}) {
 1129: 	  my %content=();
 1130: 	  undef %content;
 1131: 	  if ($ENV{'form.forwid'}) {
 1132: 	      my $msgid=$ENV{'form.forwid'};
 1133: 	      my %message=&Apache::lonnet::get('nohist_email',[$msgid]);
 1134: 	      %content=&unpackagemsg($message{$msgid},1);
 1135: 	      &statuschange($msgid,'forwarded');
 1136: 	      $ENV{'form.message'}.="\n\n-- Forwarded message --\n\n".
 1137: 		  $content{'message'};
 1138: 	  }
 1139: 	  my %toaddr=();
 1140: 	  undef %toaddr;
 1141: 	  if ($ENV{'form.sendmode'} eq 'group') {
 1142: 	      foreach (keys %ENV) {
 1143: 		  if ($_=~/^form\.send\_to\_\&\&\&[^\&]*\&\&\&\_(.+)$/) {
 1144: 		      $toaddr{$1}='';
 1145: 		  }
 1146: 	      }
 1147: 	  } elsif ($ENV{'form.sendmode'} eq 'upload') {
 1148: 	      foreach (split(/[\n\r\f]+/,$ENV{'form.upfile'})) {
 1149: 		  my ($rec,$txt)=split(/\s*\:\s*/,$_);
 1150: 		  if ($txt) {
 1151: 		      $rec=~s/\@/\:/;
 1152: 		      $toaddr{$rec}.=$txt."\n";
 1153: 		  }
 1154: 	      }
 1155: 	  } else {
 1156: 	      $toaddr{$ENV{'form.recuname'}.':'.$ENV{'form.recdomain'}}='';
 1157: 	  }
 1158: 	  if ($ENV{'form.additionalrec'}) {
 1159: 	      foreach (split(/\,/,$ENV{'form.additionalrec'})) {
 1160: 		  my ($auname,$audom)=split(/\@/,$_);
 1161: 		  $toaddr{$auname.':'.$audom}='';
 1162: 	      }
 1163: 	  }
 1164: 	  foreach (keys %toaddr) {
 1165: 	      my ($recuname,$recdomain)=split(/\:/,$_);
 1166: 	      my $msgtxt=&Apache::lonfeedback::clear_out_html($ENV{'form.message'});
 1167: 	      if ($toaddr{$_}) { $msgtxt.='<hr>'.$toaddr{$_}; }    
 1168: 	      if ((($ENV{'form.critmsg'}) || ($ENV{'form.sendbck'})) && 
 1169: 		  (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'}))) {
 1170: 		  $r->print(&mt('Sending critical message').' ...');
 1171:                   $sendstatus.=' '.&user_crit_msg($recuname,$recdomain,
 1172: 					   &Apache::lonfeedback::clear_out_html($ENV{'form.subject'}),
 1173: 					   $msgtxt,
 1174: 					   $ENV{'form.sendbck'});
 1175: 	      } else {
 1176: 		  $r->print(&mt('Sending').' ...');
 1177:                   $sendstatus.=' '.&user_normal_msg($recuname,$recdomain,
 1178: 				                         &Apache::lonfeedback::clear_out_html($ENV{'form.subject'}),
 1179: 							 $msgtxt,
 1180: 							 $content{'citation'});
 1181: 	      }
 1182: 	      $r->print('<br />');
 1183: 	  }
 1184:       }
 1185:       if ($sendstatus=~/^(\s*(?:ok|con_delayed)\s*)*$/) {
 1186: 	  if ($ENV{'form.displayedcrit'}) {
 1187: 	      &discrit($r);
 1188: 	  } else {
 1189: 	      &disall($r);
 1190: 	  }
 1191:       } else {
 1192: 	  $r->print(
 1193:   '<h2><font color="red">'.&mt('Could not deliver message').'</font></h2>'.
 1194:   &mt('Please use the browser "Back" button and correct the recipient addresses')
 1195: 		    );
 1196:       }
 1197:   } else {
 1198:       &disall($r);
 1199:   }
 1200:   $r->print('</body></html>');
 1201:   return OK;
 1202: 
 1203: }
 1204: # ================================================= Main program, reset counter
 1205: 
 1206: BEGIN {
 1207:     $msgcount=0;
 1208: }
 1209: 
 1210: =pod
 1211: 
 1212: =back
 1213: 
 1214: =cut
 1215: 
 1216: 1; 
 1217: 
 1218: __END__
 1219: 
 1220: 
 1221: 
 1222: 
 1223: 
 1224: 
 1225: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>