Annotation of loncom/interface/lonmsg.pm, revision 1.30
1.1 www 1: # The LearningOnline Network with CAPA
1.26 albertel 2: # Routines for messaging
3: #
1.30 ! matthew 4: # $Id: lonmsg.pm,v 1.29 2002/03/18 18:38:04 www Exp $
1.26 albertel 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/
1.1 www 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: #
1.6 www 37: # 10/19,10/20,10/30,
38: # 02/06/01 Gerd Kortemeyer
1.11 www 39: # 07/27 Guy Albertelli
1.23 www 40: # 07/27,07/28,07/30,08/03,08/06,08/08,08/09,08/10,8/13,8/15,
1.24 www 41: # 10/1,11/5 Gerd Kortemeyer
1.27 www 42: # YEAR=2002
1.29 www 43: # 1/1,3/18 Gerd Kortemeyer
1.27 www 44: #
1.1 www 45: package Apache::lonmsg;
46:
47: use strict;
48: use Apache::lonnet();
1.2 www 49: use vars qw($msgcount);
50: use HTML::TokeParser;
1.5 www 51: use Apache::Constants qw(:common);
1.1 www 52:
53: # ===================================================================== Package
54:
1.3 www 55: sub packagemsg {
1.7 www 56: my ($subject,$message,$citation)=@_;
1.1 www 57: $message=~s/\</\<\;/g;
58: $message=~s/\>/\>\;/g;
1.7 www 59: $citation=~s/\</\<\;/g;
60: $citation=~s/\>/\>\;/g;
1.1 www 61: $subject=~s/\</\<\;/g;
62: $subject=~s/\>/\>\;/g;
1.2 www 63: my $now=time;
64: $msgcount++;
1.6 www 65: my $partsubj=$subject;
66: $partsubj=&Apache::lonnet::escape($partsubj);
67: my $msgid=&Apache::lonnet::escape(
68: $now.':'.$partsubj.':'.$ENV{'user.name'}.':'.
69: $ENV{'user.domain'}.':'.$msgcount.':'.$$);
1.2 www 70: return $msgid,
71: '<sendername>'.$ENV{'user.name'}.'</sendername>'.
1.1 www 72: '<senderdomain>'.$ENV{'user.domain'}.'</senderdomain>'.
73: '<subject>'.$subject.'</subject>'.
1.2 www 74: '<time>'.localtime($now).'</time>'.
1.1 www 75: '<servername>'.$ENV{'SERVER_NAME'}.'</servername>'.
76: '<host>'.$ENV{'HTTP_HOST'}.'</host>'.
77: '<client>'.$ENV{'REMOTE_ADDR'}.'</client>'.
78: '<browsertype>'.$ENV{'browser.type'}.'</browsertype>'.
79: '<browseros>'.$ENV{'browser.os'}.'</browseros>'.
80: '<browserversion>'.$ENV{'browser.version'}.'</browserversion>'.
81: '<browsermathml>'.$ENV{'browser.mathml'}.'</browsermathml>'.
82: '<browserraw>'.$ENV{'HTTP_USER_AGENT'}.'</browserraw>'.
83: '<courseid>'.$ENV{'request.course.id'}.'</courseid>'.
84: '<role>'.$ENV{'request.role'}.'</role>'.
85: '<resource>'.$ENV{'request.filename'}.'</resource>'.
1.2 www 86: '<msgid>'.$msgid.'</msgid>'.
1.7 www 87: '<message>'.$message.'</message>'.
88: '<citation>'.$citation.'</citation>';
1.1 www 89: }
90:
1.2 www 91: # ================================================== Unpack message into a hash
92:
1.3 www 93: sub unpackagemsg {
1.2 www 94: my $message=shift;
95: my %content=();
96: my $parser=HTML::TokeParser->new(\$message);
97: my $token;
98: while ($token=$parser->get_token) {
99: if ($token->[0] eq 'S') {
100: my $entry=$token->[1];
101: my $value=$parser->get_text('/'.$entry);
102: $content{$entry}=$value;
103: }
104: }
105: return %content;
106: }
107:
1.6 www 108: # ======================================================= Get info out of msgid
109:
110: sub unpackmsgid {
1.7 www 111: my $msgid=&Apache::lonnet::unescape(shift);
1.6 www 112: my ($sendtime,$shortsubj,$fromname,$fromdomain)=split(/\:/,
1.7 www 113: &Apache::lonnet::unescape($msgid));
1.8 albertel 114: my %status=&Apache::lonnet::get('email_status',[$msgid]);
1.6 www 115: if ($status{$msgid}=~/^error\:/) { $status{$msgid}=''; }
116: unless ($status{$msgid}) { $status{$msgid}='new'; }
117: return ($sendtime,$shortsubj,$fromname,$fromdomain,$status{$msgid});
118: }
119:
1.1 www 120: # =============================== Automated message to the author of a resource
121:
122: sub author_res_msg {
123: my ($filename,$message)=@_;
1.2 www 124: unless ($message) { return 'empty'; }
1.1 www 125: $filename=&Apache::lonnet::declutter($filename);
126: my ($domain,$author,@dummy)=split(/\//,$filename);
127: my $homeserver=&Apache::lonnet::homeserver($author,$domain);
128: if ($homeserver ne 'no_host') {
129: my $id=unpack("%32C*",$message);
1.2 www 130: my $msgid;
1.3 www 131: ($msgid,$message)=&packagemsg($filename,$message);
132: return &Apache::lonnet::reply('put:'.$domain.':'.$author.
133: ':nohist_res_msgs:'.
134: &Apache::lonnet::escape($filename.'_'.$id).'='.
135: &Apache::lonnet::escape($message),$homeserver);
1.1 www 136: }
1.2 www 137: return 'no_host';
1.1 www 138: }
139:
140: # ================================================== Critical message to a user
141:
142: sub user_crit_msg {
1.24 www 143: my ($user,$domain,$subject,$message,$sendback)=@_;
1.2 www 144: # Check if allowed missing
145: my $status='';
146: my $msgid='undefined';
147: unless (($message)&&($user)&&($domain)) { $status='empty'; };
148: my $homeserver=&Apache::lonnet::homeserver($user,$domain);
149: if ($homeserver ne 'no_host') {
1.3 www 150: ($msgid,$message)=&packagemsg($subject,$message);
1.24 www 151: if ($sendback) { $message.='<sendback>true</sendback>'; }
1.4 www 152: $status=&Apache::lonnet::critical(
153: 'put:'.$domain.':'.$user.':critical:'.
154: &Apache::lonnet::escape($msgid).'='.
155: &Apache::lonnet::escape($message),$homeserver);
1.2 www 156: } else {
157: $status='no_host';
158: }
159: &Apache::lonnet::logthis(
1.4 www 160: 'Sending critical email '.$msgid.
1.2 www 161: ', log status: '.
162: &Apache::lonnet::log($ENV{'user.domain'},$ENV{'user.name'},
163: $ENV{'user.home'},
164: 'Sending critical '.$msgid.' to '.$user.' at '.$domain.' with status: '
1.4 www 165: .$status));
1.2 www 166: return $status;
167: }
168:
169: # =================================================== Critical message received
170:
171: sub user_crit_received {
1.12 www 172: my $msgid=shift;
173: my %message=&Apache::lonnet::get('critical',[$msgid]);
174: my %contents=&unpackagemsg($message{$msgid});
1.24 www 175: my $status='rec: '.($contents{'sendback'}?
1.5 www 176: &user_normal_msg($contents{'sendername'},$contents{'senderdomain'},
1.4 www 177: 'Receipt: '.$ENV{'user.name'}.' at '.$ENV{'user.domain'},
178: 'User '.$ENV{'user.name'}.' at '.$ENV{'user.domain'}.
179: ' acknowledged receipt of message "'.
180: $contents{'subject'}.'" dated '.$contents{'time'}.".\n\n"
1.24 www 181: .'Message ID: '.$contents{'msgid'}):'no msg req');
1.5 www 182: $status.=' trans: '.
1.12 www 183: &Apache::lonnet::put(
184: 'nohist_email',{$contents{'msgid'} => $message{$msgid}});
1.5 www 185: $status.=' del: '.
1.9 albertel 186: &Apache::lonnet::del('critical',[$contents{'msgid'}]);
1.5 www 187: &Apache::lonnet::log($ENV{'user.domain'},$ENV{'user.name'},
188: $ENV{'user.home'},'Received critical message '.
189: $contents{'msgid'}.
190: ', '.$status);
1.12 www 191: return $status;
1.2 www 192: }
193:
194: # ======================================================== Normal communication
195:
196: sub user_normal_msg {
1.7 www 197: my ($user,$domain,$subject,$message,$citation)=@_;
1.2 www 198: # Check if allowed missing
199: my $status='';
200: my $msgid='undefined';
201: unless (($message)&&($user)&&($domain)) { $status='empty'; };
202: my $homeserver=&Apache::lonnet::homeserver($user,$domain);
203: if ($homeserver ne 'no_host') {
1.7 www 204: ($msgid,$message)=&packagemsg($subject,$message,$citation);
1.4 www 205: $status=&Apache::lonnet::critical(
206: 'put:'.$domain.':'.$user.':nohist_email:'.
207: &Apache::lonnet::escape($msgid).'='.
208: &Apache::lonnet::escape($message),$homeserver);
1.2 www 209: } else {
210: $status='no_host';
211: }
212: &Apache::lonnet::log($ENV{'user.domain'},$ENV{'user.name'},
213: $ENV{'user.home'},
214: 'Sending '.$msgid.' to '.$user.' at '.$domain.' with status: '.$status);
215: return $status;
216: }
217:
1.7 www 218: # =============================================================== Status Change
219:
220: sub statuschange {
221: my ($msgid,$newstatus)=@_;
1.8 albertel 222: my %status=&Apache::lonnet::get('email_status',[$msgid]);
1.7 www 223: if ($status{$msgid}=~/^error\:/) { $status{$msgid}=''; }
224: unless ($status{$msgid}) { $status{$msgid}='new'; }
225: unless (($status{$msgid} eq 'replied') ||
226: ($status{$msgid} eq 'forwarded')) {
1.10 albertel 227: &Apache::lonnet::put('email_status',{$msgid => $newstatus});
1.7 www 228: }
1.14 www 229: if (($newstatus eq 'deleted') || ($newstatus eq 'new')) {
230: &Apache::lonnet::put('email_status',{$msgid => $newstatus});
231: }
1.7 www 232: }
1.14 www 233:
1.17 www 234: # ======================================================= Display a course list
235:
236: sub discourse {
237: my $r=shift;
238: my %courselist=&Apache::lonnet::dump(
239: 'classlist',
240: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'},
241: $ENV{'course.'.$ENV{'request.course.id'}.'.num'});
242: my $now=time;
243: $r->print(<<ENDDISHEADER);
244: <input type=hidden name=sendmode value=group>
245: <script>
246: function checkall() {
247: for (i=0; i<document.forms.compemail.elements.length; i++) {
248: if
249: (document.forms.compemail.elements[i].name.indexOf('send_to_')==0) {
250: document.forms.compemail.elements[i].checked=true;
251: }
252: }
253: }
254:
1.19 www 255: function checksec() {
256: for (i=0; i<document.forms.compemail.elements.length; i++) {
257: if
258: (document.forms.compemail.elements[i].name.indexOf
259: ('send_to_&&&'+document.forms.compemail.chksec.value)==0) {
260: document.forms.compemail.elements[i].checked=true;
261: }
262: }
263: }
264:
1.17 www 265: function uncheckall() {
266: for (i=0; i<document.forms.compemail.elements.length; i++) {
267: if
268: (document.forms.compemail.elements[i].name.indexOf('send_to_')==0) {
269: document.forms.compemail.elements[i].checked=false;
270: }
271: }
272: }
273: </script>
1.19 www 274: <input type=button onClick="checkall()" value="Check for All">
275: <input type=button onClick="checksec()" value="Check for Section/Group">
276: <input type=text size=5 name=chksec>
1.17 www 277: <input type=button onClick="uncheckall()" value="Check for None">
278: <p>
279: ENDDISHEADER
1.28 harris41 280: foreach (sort keys %courselist) {
1.17 www 281: my ($end,$start)=split(/\:/,$courselist{$_});
282: my $active=1;
283: if (($end) && ($now>$end)) { $active=0; }
284: if ($active) {
285: my ($sname,$sdom)=split(/\:/,$_);
286: my %reply=&Apache::lonnet::get('environment',
287: ['firstname','middlename','lastname','generation'],
288: $sdom,$sname);
1.19 www 289: my $section=&Apache::lonnet::usection
290: ($sdom,$sname,$ENV{'request.course.id'});
291: $r->print(
292: '<br><input type=checkbox name="send_to_&&&'.$section.'&&&_'.$_.'"> '.
1.17 www 293: $reply{'firstname'}.' '.
294: $reply{'middlename'}.' '.
295: $reply{'lastname'}.' '.
296: $reply{'generation'}.
1.19 www 297: ' ('.$_.') '.$section);
1.17 www 298: }
1.28 harris41 299: }
1.17 www 300: }
301:
1.13 www 302: # ==================================================== Display Critical Message
1.5 www 303:
1.12 www 304: sub discrit {
305: my $r=shift;
1.30 ! matthew 306: my $header = '<h1><font color=red>Critical Messages</font></h1>'.
! 307: '<form action=/adm/email method=post>'.
! 308: '<input type=hidden name=confirm value=true>';
! 309: my %what=&Apache::lonnet::dump('critical');
! 310: my $result = '';
! 311: foreach (sort keys %what) {
! 312: my %content=&unpackagemsg($what{$_});
! 313: next if ($content{'senderdomain'} eq '');
! 314: $content{'message'}=~s/\n/\<br\>/g;
! 315: $result.='<hr>From: <b>'.$content{'sendername'}.'@'.
! 316: $content{'senderdomain'}.'</b> ('.$content{'time'}.
! 317: ')<br><blockquote>'.$content{'message'}.'</blockquote>'.
! 318: '<input type=submit name="rec_'.$_.'" value="Confirm Receipt">'.
! 319: '<input type=submit name="reprec_'.$_.'" '.
! 320: 'value="Confirm Receipt and Reply">';
! 321: }
! 322: # Check to see if there were any messages.
! 323: if ($result eq '') {
! 324: $result = "<h2>You have no critical messages.</h2>";
! 325: } else {
! 326: $r->print($header);
! 327: }
! 328: $r->print($result);
! 329: $r->print('<input type=hidden name="displayedcrit" value="true"></form>');
1.12 www 330: }
331:
1.13 www 332: # =============================================================== Compose reply
333:
334: sub comprep {
335: my ($r,$msgid)=@_;
336: my %message=&Apache::lonnet::get('nohist_email',[$msgid]);
337: my %content=&unpackagemsg($message{$msgid});
338: my $quotemsg='> '.$content{'message'};
339: $quotemsg=~s/\r/\n/g;
340: $quotemsg=~s/\f/\n/g;
341: $quotemsg=~s/\n+/\n\> /g;
342: my $subject='Re: '.$content{'subject'};
343: my $dispcrit='';
344: if (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) {
345: $dispcrit=
1.24 www 346: '<input type=checkbox name=critmsg> Send as critical message<br>'.
347: '<input type=checkbox name=sendbck> Send as critical message'.
348: ' and return receipt<p>';
1.13 www 349: }
350: $r->print(<<"ENDREPLY");
351: <form action="/adm/email" method=post>
352: <input type=hidden name=sendreply value="$msgid">
353: Subject: <input type=text size=50 name=subject value="$subject"><p>
1.23 www 354: <textarea name=message cols=64 rows=10 wrap=hard>
1.13 www 355: $quotemsg
356: </textarea><p>
357: $dispcrit
358: <input type=submit value="Send Reply">
359: </form>
360: ENDREPLY
361: }
362:
1.15 www 363: # ======================================================== Display all messages
364:
1.14 www 365: sub disall {
366: my $r=shift;
1.29 www 367: $r->print(<<ENDDISHEADER);
368: <script>
369: function checkall() {
370: for (i=0; i<document.forms.disall.elements.length; i++) {
371: if
372: (document.forms.disall.elements[i].name.indexOf('delmark_')==0) {
373: document.forms.disall.elements[i].checked=true;
374: }
375: }
376: }
377:
378: function uncheckall() {
379: for (i=0; i<document.forms.disall.elements.length; i++) {
380: if
381: (document.forms.disall.elements[i].name.indexOf('delmark_')==0) {
382: document.forms.disall.elements[i].checked=false;
383: }
384: }
385: }
386: </script>
387: ENDDISHEADER
388: $r->print(
389: '<h1>Display All Messages</h1><form method=post name=disall '.
390: 'action="/adm/email">'.
1.14 www 391: '<table border=2><tr><th colspan=2> </th><th>Date</th>'.
392: '<th>Username</th><th>Domain</th><th>Subject</th><th>Status</th></tr>');
1.27 www 393: foreach (sort split(/\&/,&Apache::lonnet::reply('keys:'.
394: $ENV{'user.domain'}.':'.
395: $ENV{'user.name'}.':nohist_email',
396: $ENV{'user.home'}))) {
1.14 www 397: my ($sendtime,$shortsubj,$fromname,$fromdomain,$status)=
398: &Apache::lonmsg::unpackmsgid($_);
399: unless ($status eq 'deleted') {
400: if ($status eq 'new') {
401: $r->print('<tr bgcolor="#FFBB77">');
402: } elsif ($status eq 'read') {
403: $r->print('<tr bgcolor="#BBBB77">');
404: } elsif ($status eq 'replied') {
405: $r->print('<tr bgcolor="#AAAA88">');
406: } else {
407: $r->print('<tr bgcolor="#99BBBB">');
408: }
409: $r->print('<td><a href="/adm/email?display='.$_.
410: '">Open</a></td><td><a href="/adm/email?markdel='.$_.
1.25 www 411: '">Delete</a><input type=checkbox name="delmark_'.$_.'"></td>'.
412: '<td>'.localtime($sendtime).'</td><td>'.
1.14 www 413: $fromname.'</td><td>'.$fromdomain.'</td><td>'.
414: &Apache::lonnet::unescape($shortsubj).'</td><td>'.
415: $status.'</td></tr>');
416: }
1.27 www 417: }
1.25 www 418: $r->print('</table><p>'.
1.29 www 419: '<a href="javascript:checkall()">Check All</a> '.
420: '<a href="javascript:uncheckall()">Uncheck All</a><p>'.
1.25 www 421: '<input type=submit name="markeddel" value="Delete Checked">'.
422: '</form></body></html>');
1.14 www 423: }
424:
1.15 www 425: # ============================================================== Compose output
426:
427: sub compout {
1.17 www 428: my ($r,$forwarding,$broadcast)=@_;
1.15 www 429: my $dispcrit='';
430: my $dissub='';
431: my $dismsg='';
432: my $func='Send New';
433: if (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'})) {
434: $dispcrit=
1.24 www 435: '<input type=checkbox name=critmsg> Send as critical message<br>'.
436: '<input type=checkbox name=sendbck> Send as critical message'.
437: ' and return receipt<p>';
1.15 www 438: }
439: if ($forwarding) {
440: $dispcrit.='<input type=hidden name=forwid value="'.
441: $forwarding.'">';
442: $func='Forward';
443: my %message=&Apache::lonnet::get('nohist_email',[$forwarding]);
444: my %content=&unpackagemsg($message{$forwarding});
445:
446: $dissub='Forwarding: '.$content{'subject'};
447: $dismsg='Forwarded message from '.
448: $content{'sendername'}.' at '.$content{'senderdomain'};
449: }
450: my $defdom=$ENV{'user.domain'};
1.22 www 451: $r->print(
452: '<form action="/adm/email" name="compemail" method=post'.
453: ' enctype="multipart/form-data">'.
1.17 www 454: '<input type=hidden name=sendmail value=on><table>');
1.22 www 455: unless (($broadcast eq 'group') || ($broadcast eq 'upload')) {
1.17 www 456: $r->print(<<"ENDREC");
1.15 www 457: <table>
458: <tr><td>Username:</td><td><input type=text size=12 name=recuname></td></tr>
459: <tr><td>Domain:</td>
460: <td><input type=text size=12 name=recdomain value="$defdom"></td></tr>
1.17 www 461: ENDREC
462: }
1.22 www 463: unless ($broadcast eq 'upload') {
464: $r->print(<<"ENDCOMP");
1.20 www 465: <tr><td>Additional Recipients<br><tt>username\@domain,username\@domain, ...
466: </tt></td><td>
467: <input type=text size=50 name=additionalrec></td></tr>
1.15 www 468: <tr><td>Subject:</td><td><input type=text size=50 name=subject value="$dissub">
469: </td></tr></table>
1.23 www 470: <textarea name=message cols=60 rows=10 wrap=hard>$dismsg
1.15 www 471: </textarea><p>
472: $dispcrit
473: <input type=submit value="$func Mail">
474: ENDCOMP
1.22 www 475: }
476: if ($broadcast eq 'upload') {
477: $r->print(<<ENDUPLOAD);
478: <input type=hidden name=sendmode value=upload>
479: <h3>Generate messages from a file</h3>
480: Subject: <input type=text size=50 name=subject>
481: <pre>
482: username1\@domain1: text
483: username2\@domain2: text
484: username1\@domain1: text
485: </pre>
486: The messages will be assembled from all lines with the respective
487: <tt>username\@domain</tt>, and appended to the general message text.<p>
488: <input type=file name=upfile size=20><p>
489: General message text:<p>
1.23 www 490: <textarea name=message cols=60 rows=10 wrap=hard>$dismsg
1.22 www 491: </textarea><p>
492: $dispcrit
493: <input type=submit value="Upload and send">
494: ENDUPLOAD
495: }
1.17 www 496: if ($broadcast eq 'group') {
497: &discourse;
498: }
499: $r->print('</form>');
1.15 www 500: }
501:
1.13 www 502: # ===================================================================== Handler
503:
1.5 www 504: sub handler {
505: my $r=shift;
506:
507: # ----------------------------------------------------------- Set document type
508:
509: $r->content_type('text/html');
510: $r->send_http_header;
511:
512: return OK if $r->header_only;
513:
1.6 www 514: # --------------------------- Get query string for limited number of parameters
515:
1.28 harris41 516: foreach (split(/&/,$ENV{'QUERY_STRING'})) {
1.6 www 517: my ($name, $value) = split(/=/,$_);
518: $value =~ tr/+/ /;
519: $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
520: if (($name eq 'display') || ($name eq 'replyto') ||
1.14 www 521: ($name eq 'forward') || ($name eq 'markread') ||
522: ($name eq 'markdel') || ($name eq 'markunread') ||
1.12 www 523: ($name eq 'sendreply') || ($name eq 'compose') ||
524: ($name eq 'sendmail') || ($name eq 'critical')) {
1.6 www 525: unless ($ENV{'form.'.$name}) {
526: $ENV{'form.'.$name}=$value;
527: }
528: }
1.28 harris41 529: }
1.6 www 530:
1.5 www 531: # --------------------------------------------------------------- Render Output
532:
533: $r->print('<html><head><title>EMail and Messaging</title></head>');
1.7 www 534: $r->print(
535: '<body bgcolor="#FFFFFF"><img align=right src=/adm/lonIcons/lonlogos.gif>');
1.5 www 536: $r->print('<h1>EMail</h1>');
1.6 www 537: if ($ENV{'form.display'}) {
1.7 www 538: my $msgid=$ENV{'form.display'};
539: &statuschange($msgid,'read');
1.8 albertel 540: my %message=&Apache::lonnet::get('nohist_email',[$msgid]);
1.7 www 541: my %content=&unpackagemsg($message{$msgid});
542: $r->print('<b>Subject:</b> '.$content{'subject'}.
543: '<br><b>From:</b> '.$content{'sendername'}.' at '.
544: $content{'senderdomain'}.
1.14 www 545: '<br><b>Time:</b> '.$content{'time'}.'<p>'.
546: '<table border=2><tr bgcolor="#FFFFAA"><td>Functions:</td>'.
547: '<td><a href="/adm/email?replyto='.&Apache::lonnet::escape($msgid).
548: '"><b>Reply</b></a></td>'.
1.15 www 549: '<td><a href="/adm/email?forward='.&Apache::lonnet::escape($msgid).
1.14 www 550: '"><b>Forward</b></a></td>'.
1.15 www 551: '<td><a href="/adm/email?markunread='.&Apache::lonnet::escape($msgid).
552: '"><b>Mark Unread</b></a></td>'.
553: '<td><a href="/adm/email"><b>Display all Messages</b></a></td>'.
1.14 www 554: '</tr></table><p><pre>'.
1.7 www 555: $content{'message'}.'</pre><hr>'.$content{'citation'});
1.6 www 556: } elsif ($ENV{'form.replyto'}) {
1.13 www 557: &comprep($r,$ENV{'form.replyto'});
1.7 www 558: } elsif ($ENV{'form.sendreply'}) {
559: my $msgid=$ENV{'form.sendreply'};
1.8 albertel 560: my %message=&Apache::lonnet::get('nohist_email',[$msgid]);
1.7 www 561: my %content=&unpackagemsg($message{$msgid});
562: &statuschange($msgid,'replied');
1.24 www 563: if ((($ENV{'form.critmsg'}) || ($ENV{'form.sendbck'})) &&
1.12 www 564: (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'}))) {
565: $r->print('Sending critical: '.
566: &user_crit_msg($content{'sendername'},
1.7 www 567: $content{'senderdomain'},
568: $ENV{'form.subject'},
1.24 www 569: $ENV{'form.message'},
570: $ENV{'form.sendbck'}));
1.12 www 571: } else {
572: $r->print('Sending: '.&user_normal_msg($content{'sendername'},
573: $content{'senderdomain'},
574: $ENV{'form.subject'},
575: $ENV{'form.message'}));
576: }
1.14 www 577: if ($ENV{'form.displayedcrit'}) {
578: &discrit($r);
579: } else {
580: &disall($r);
581: }
1.12 www 582: } elsif ($ENV{'form.confirm'}) {
1.28 harris41 583: foreach (keys %ENV) {
1.12 www 584: if ($_=~/^form\.rec\_(.*)$/) {
585: $r->print('<b>Confirming Receipt:</b> '.
586: &user_crit_received($1).'<br>');
1.13 www 587: }
588: if ($_=~/^form\.reprec\_(.*)$/) {
589: my $msgid=$1;
590: $r->print('<b>Confirming Receipt:</b> '.
591: &user_crit_received($msgid).'<br>');
592: &comprep($r,$msgid);
1.12 www 593: }
1.28 harris41 594: }
1.12 www 595: &discrit($r);
596: } elsif ($ENV{'form.critical'}) {
597: &discrit($r);
1.6 www 598: } elsif ($ENV{'form.forward'}) {
1.15 www 599: &compout($r,$ENV{'form.forward'});
1.14 www 600: } elsif ($ENV{'form.markread'}) {
601: } elsif ($ENV{'form.markdel'}) {
602: &statuschange($ENV{'form.markdel'},'deleted');
1.25 www 603: &disall($r);
604: } elsif ($ENV{'form.markeddel'}) {
605: my $total=0;
1.28 harris41 606: foreach (keys %ENV) {
1.25 www 607: if ($_=~/^form\.delmark_(.*)$/) {
608: &statuschange(&Apache::lonnet::unescape($1),'deleted');
609: $total++;
610: }
1.28 harris41 611: }
1.25 www 612: $r->print('Deleted '.$total.' message(s)<p>');
1.14 www 613: &disall($r);
614: } elsif ($ENV{'form.markunread'}) {
1.15 www 615: &statuschange($ENV{'form.markunread'},'new');
616: &disall($r);
1.11 www 617: } elsif ($ENV{'form.compose'}) {
1.17 www 618: &compout($r,'',$ENV{'form.compose'});
1.11 www 619: } elsif ($ENV{'form.sendmail'}) {
1.16 www 620: my %content=();
621: undef %content;
622: if ($ENV{'form.forwid'}) {
623: my $msgid=$ENV{'form.forwid'};
624: my %message=&Apache::lonnet::get('nohist_email',[$msgid]);
625: %content=&unpackagemsg($message{$msgid});
626: &statuschange($msgid,'forwarded');
627: $ENV{'form.message'}.="\n\n-- Forwarded message --\n\n".
628: $content{'message'};
629: }
1.18 www 630: my %toaddr=();
631: undef %toaddr;
632: if ($ENV{'form.sendmode'} eq 'group') {
1.28 harris41 633: foreach (keys %ENV) {
1.19 www 634: if ($_=~/^form\.send\_to\_\&\&\&[^\&]*\&\&\&\_(.+)$/) {
1.22 www 635: $toaddr{$1}='';
1.18 www 636: }
1.28 harris41 637: }
1.22 www 638: } elsif ($ENV{'form.sendmode'} eq 'upload') {
1.28 harris41 639: foreach (split(/[\n\r\f]+/,$ENV{'form.upfile'})) {
1.22 www 640: my ($rec,$txt)=split(/\s*\:\s*/,$_);
641: if ($txt) {
642: $rec=~s/\@/\:/;
643: $toaddr{$rec}.=$txt."\n";
644: }
1.28 harris41 645: }
1.18 www 646: } else {
1.22 www 647: $toaddr{$ENV{'form.recuname'}.':'.$ENV{'form.recdomain'}}='';
1.20 www 648: }
649: if ($ENV{'form.additionalrec'}) {
1.28 harris41 650: foreach (split(/\,/,$ENV{'form.additionalrec'})) {
1.20 www 651: my ($auname,$audom)=split(/\@/,$_);
1.22 www 652: $toaddr{$auname.':'.$audom}='';
1.28 harris41 653: }
1.18 www 654: }
1.28 harris41 655: foreach (keys %toaddr) {
1.18 www 656: my ($recuname,$recdomain)=split(/\:/,$_);
1.22 www 657: my $msgtxt=$ENV{'form.message'};
658: if ($toaddr{$_}) { $msgtxt.='<hr>'.$toaddr{$_}; }
1.24 www 659: if ((($ENV{'form.critmsg'}) || ($ENV{'form.sendbck'})) &&
1.16 www 660: (&Apache::lonnet::allowed('srm',$ENV{'request.course.id'}))) {
661: $r->print('Sending critical: '.
1.18 www 662: &user_crit_msg($recuname,$recdomain,
1.16 www 663: $ENV{'form.subject'},
1.22 www 664: $msgtxt,
1.24 www 665: $ENV{'form.sendbck'}));
1.16 www 666: } else {
1.18 www 667: $r->print('Sending: '.&user_normal_msg($recuname,$recdomain,
1.16 www 668: $ENV{'form.subject'},
1.22 www 669: $msgtxt,
1.16 www 670: $content{'citation'}));
671: }
1.18 www 672: $r->print('<br>');
1.28 harris41 673: }
1.16 www 674: if ($ENV{'form.displayedcrit'}) {
675: &discrit($r);
676: } else {
677: &disall($r);
678: }
1.6 www 679: } else {
1.14 www 680: &disall($r);
1.6 www 681: }
1.5 www 682: $r->print('</body></html>');
683: return OK;
684:
685: }
1.2 www 686: # ================================================= Main program, reset counter
687:
1.27 www 688: BEGIN {
1.2 www 689: $msgcount=0;
1.1 www 690: }
691:
692: 1;
693: __END__
694:
695:
696:
697:
698:
699:
700:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>