Added auth on file method
[squirrelmail.git] / plugins / listcommands / mailout.php
index 97e71c1be36be7f5f16eece3ec3c751235cd714e..ac5989e1c6a4a36541ac5fc0e935445825d771f7 100644 (file)
@@ -1,10 +1,13 @@
 <?php
-/*
- * mailout.php part of listcommands plugin
- * last modified: 2002/01/12 by Thijs Kinkhorst
+/**
+ * mailout.php
+ *
+ * Copyright (c) 1999-2002 The SquirrelMail Project Team
+ * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
+ * $Id$
  */
+
 chdir('..');
 include_once ('../src/validate.php');
 include_once ('../functions/page_header.php');
@@ -12,22 +15,20 @@ include_once ('../src/load_prefs.php');
 
 displayPageHeader($color, $mailbox);
 
-?>
-<P>
-<TABLE align="center" width="75%" BGCOLOR="<?php echo $color[0]; ?>">
-<TR><TH BGCOLOR="<?php echo $color[9] . '">' . _("Mailinglist") . ' ' . _($action); ?></TH></TR>
-<TR><TD>
-<?php
+echo '<P><TABLE align="center" width="75%" BGCOLOR="' . $color[0] ."\">\n"
+    .'<TR><TH BGCOLOR="'. $color[9] . '">' . _("Mailinglist") . ' ' . _($action) .
+    "</TH></TR>\n<TR><TD>";
+
 
 switch ( $action ) {
 case 'Help':
-    $out_string .= _("This will send a message to %s requesting help for this list. You will receive an emailed response at the address below.");
+    $out_string = _("This will send a message to %s requesting help for this list. You will receive an emailed response at the address below.");
     break;
 case 'Subscribe':
-    $out_string .= _("This will send a message to %s requesting that you will be subscribed to this list. You will be subscribed with the address below.");
+    $out_string = _("This will send a message to %s requesting that you will be subscribed to this list. You will be subscribed with the address below.");
     break;
 case 'Unsubscribe':
-    $out_string = _("This will send a message to %s requesting that you will be subscribed to this list. It will try to unsubscribe the adress below.");
+    $out_string = _("This will send a message to %s requesting that you will be unsubscribed from this list. It will try to unsubscribe the adress below.");
 }
 
 printf( $out_string, htmlspecialchars($send_to) );
@@ -46,11 +47,10 @@ $em = getPref($data_dir, $username, 'email_address');
 if ($em != '') {
     $defaultmail .= htmlspecialchars(' <' . $em . '>') . "\n";
 }
-echo '<P><CENTER>' . _("From:");
+echo '<P><CENTER>' . _("From:") . ' ';
 
-$idents = getPref($data_dir, $username, 'identities'); 
-if ($idents != '' && $idents > 1)
-{
+$idents = getPref($data_dir, $username, 'identities');
+if ($idents != '' && $idents > 1) {
     echo ' <select name=identity>' . "\n" .
          '<option value=default>' . $defaultmail;
     for ($i = 1; $i < $idents; $i ++) {
@@ -64,23 +64,18 @@ if ($idents != '' && $idents > 1)
         if ($em != '') {
             echo htmlspecialchars(' <' . $em . '>') . "\n";
         }
-    } 
+    }
     echo '</select>' . "\n" ;
 
-}
-else
-{
+} else {
     echo $defaultmail;
-} 
+}
+
+echo '<BR>'
+. '<input type=hidden name="send_to" value="' . htmlspecialchars($send_to) . '">'
+. '<input type=hidden name="subject" value="' . htmlspecialchars($subject) . '">'
+. '<input type=hidden name="body" value="' . htmlspecialchars($body) . '">'
+. '<input type=hidden name="mailbox" value="' . htmlspecialchars($mailbox) . '">'
+. '<input type=submit name="send" value="' . _("Send Mail") . '"><BR><BR></CENTER>'
+. '</form></TD></TR></TABLE></P></BODY></HTML>';
 ?>
-<BR>
-<input type=hidden name="send_to" value="<?php echo htmlspecialchars($send_to); ?>">
-<input type=hidden name="subject" value="<?php echo htmlspecialchars($subject); ?>">
-<input type=hidden name="body" value="<?php echo htmlspecialchars($body); ?>">
-<input type=hidden name="mailbox" value="<?php echo htmlspecialchars($mailbox); ?>">
-<input type=submit name="send" value="<?php echo _("Send Mail"); ?>"><BR><BR></CENTER>
-</form>
-</TD></TR></TABLE>
-</P>
-</BODY>
-</HTML>
\ No newline at end of file