|
@@ -1,11 +1,12 @@
|
|
<?php
|
|
<?php
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* mailout.php
|
|
* mailout.php
|
|
*
|
|
*
|
|
* Copyright (c) 1999-2005 The SquirrelMail Project Team
|
|
* Copyright (c) 1999-2005 The SquirrelMail Project Team
|
|
* Licensed under the GNU GPL. For full terms see the file COPYING.
|
|
* Licensed under the GNU GPL. For full terms see the file COPYING.
|
|
*
|
|
*
|
|
- * $Id$
|
|
|
|
|
|
+ * @version $Id$
|
|
* @package plugins
|
|
* @package plugins
|
|
* @subpackage listcommands
|
|
* @subpackage listcommands
|
|
*/
|
|
*/
|
|
@@ -20,8 +21,7 @@ include_once(SM_PATH . 'include/load_prefs.php');
|
|
include_once(SM_PATH . 'functions/html.php');
|
|
include_once(SM_PATH . 'functions/html.php');
|
|
require_once(SM_PATH . 'functions/identity.php');
|
|
require_once(SM_PATH . 'functions/identity.php');
|
|
require_once(SM_PATH . 'functions/forms.php');
|
|
require_once(SM_PATH . 'functions/forms.php');
|
|
-
|
|
|
|
-displayPageHeader($color, $mailbox);
|
|
|
|
|
|
+include_once(SM_PATH . 'plugins/listcommands/functions.php');
|
|
|
|
|
|
/* get globals */
|
|
/* get globals */
|
|
sqgetGlobalVar('mailbox', $mailbox, SQ_GET);
|
|
sqgetGlobalVar('mailbox', $mailbox, SQ_GET);
|
|
@@ -30,29 +30,31 @@ sqgetGlobalVar('subject', $subject, SQ_GET);
|
|
sqgetGlobalVar('body', $body, SQ_GET);
|
|
sqgetGlobalVar('body', $body, SQ_GET);
|
|
sqgetGlobalVar('action', $action, SQ_GET);
|
|
sqgetGlobalVar('action', $action, SQ_GET);
|
|
|
|
|
|
|
|
+displayPageHeader($color, $mailbox);
|
|
|
|
+$fieldsdescr = listcommands_fieldsdescr();
|
|
|
|
+
|
|
echo html_tag('p', '', 'left' ) .
|
|
echo html_tag('p', '', 'left' ) .
|
|
-html_tag( 'table', '', 'center', $color[0], 'border="0" width="75%"' ) . "\n" .
|
|
|
|
|
|
+ html_tag( 'table', '', 'center', $color[0], 'border="0" width="75%"' ) . "\n" .
|
|
html_tag( 'tr',
|
|
html_tag( 'tr',
|
|
- html_tag( 'th', _("Mailinglist") . ' ' . _($action), '', $color[9] )
|
|
|
|
- ) .
|
|
|
|
|
|
+ html_tag( 'th', _("Mailinglist") . ': ' . $fieldsdescr[$action], '', $color[9] )
|
|
|
|
+ ) .
|
|
html_tag( 'tr' ) .
|
|
html_tag( 'tr' ) .
|
|
html_tag( 'td', '', 'left' );
|
|
html_tag( 'td', '', 'left' );
|
|
|
|
|
|
switch ( $action ) {
|
|
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.");
|
|
|
|
- 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.");
|
|
|
|
- break;
|
|
|
|
-case 'unsubscribe':
|
|
|
|
- $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.");
|
|
|
|
|
|
+ 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.");
|
|
|
|
+ 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.");
|
|
|
|
+ break;
|
|
|
|
+ case 'unsubscribe':
|
|
|
|
+ $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) );
|
|
|
|
-
|
|
|
|
-echo addForm('../../src/compose.php', 'post');
|
|
|
|
|
|
+printf($out_string, '"' . htmlspecialchars($send_to) . '"');
|
|
|
|
|
|
|
|
+echo addForm(SM_PATH . 'src/compose.php', 'post');
|
|
|
|
|
|
$idents = get_identities();
|
|
$idents = get_identities();
|
|
|
|
|
|
@@ -63,20 +65,20 @@ if (count($idents) > 1) {
|
|
foreach($idents as $nr=>$data) {
|
|
foreach($idents as $nr=>$data) {
|
|
echo '<option value="' . $nr . '">' .
|
|
echo '<option value="' . $nr . '">' .
|
|
htmlspecialchars(
|
|
htmlspecialchars(
|
|
- $data['full_name'].' <'.
|
|
|
|
- $data['email_address'] . ">\n");
|
|
|
|
|
|
+ $data['full_name'].' <'.
|
|
|
|
+ $data['email_address'] . ">\n");
|
|
}
|
|
}
|
|
echo '</select>' . "\n" ;
|
|
echo '</select>' . "\n" ;
|
|
} else {
|
|
} else {
|
|
echo htmlspecialchars('"'.$idents[0]['full_name'].'" <'.$idents[0]['email_address'].'>');
|
|
echo htmlspecialchars('"'.$idents[0]['full_name'].'" <'.$idents[0]['email_address'].'>');
|
|
}
|
|
}
|
|
|
|
|
|
-echo '<br />'
|
|
|
|
-. addHidden('send_to', $send_to)
|
|
|
|
-. addHidden('subject', $subject)
|
|
|
|
-. addHidden('body', $body)
|
|
|
|
-. addHidden('mailbox', $mailbox)
|
|
|
|
-. addSubmit(_("Send Mail"), 'send')
|
|
|
|
-. '<br /><br /></center>'
|
|
|
|
-. '</form></td></tr></table></p></body></html>';
|
|
|
|
-?>
|
|
|
|
|
|
+echo '<br />' .
|
|
|
|
+ addHidden('send_to', $send_to) .
|
|
|
|
+ addHidden('subject', $subject) .
|
|
|
|
+ addHidden('body', $body) .
|
|
|
|
+ addHidden('mailbox', $mailbox) .
|
|
|
|
+ addSubmit(_("Send Mail"), 'send');
|
|
|
|
+?>
|
|
|
|
+<br /><br /></center>
|
|
|
|
+</form></td></tr></table></p></body></html>
|