\n" .'\n
' . _("Mailinglist") . ' ' . _($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."); } printf( $out_string, htmlspecialchars($send_to) ); echo '
'; /* * Identity support (RFC 2369 sect. B.1.) * * I had to copy this from compose.php because there doesn't * seem to exist a function to get the identities. */ $defaultmail = htmlspecialchars(getPref($data_dir, $username, 'full_name')); $em = getPref($data_dir, $username, 'email_address'); if ($em != '') { $defaultmail .= htmlspecialchars(' <' . $em . '>') . "\n"; } echo '

' . _("From:") . ' '; $idents = getPref($data_dir, $username, 'identities'); if ($idents != '' && $idents > 1) { echo ' ' . "\n" ; } else { echo $defaultmail; } echo '
' . '' . '' . '' . '' . '

' . '

'; ?>