X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=include%2Foptions%2Fcompose.php;h=6ba59c34bfc3d9929d8c2dfe3eb98f68e7a53430;hp=dbc53c41b47c87e27b134003e5bb586cdf5018b0;hb=HEAD;hpb=5619673737450c926cf406d4aeb802d0544f52ed diff --git a/include/options/compose.php b/include/options/compose.php index dbc53c41..5a475a01 100644 --- a/include/options/compose.php +++ b/include/options/compose.php @@ -5,7 +5,7 @@ * * Displays all options concerning composing of new messages * - * @copyright © 1999-2007 The SquirrelMail Project Team + * @copyright 1999-2022 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail @@ -118,6 +118,13 @@ function load_optpage_data_compose() { $optgrps[SMOPT_GRP_COMPOSE_REPLY] = _("Replying and Forwarding Messages"); $optvals[SMOPT_GRP_COMPOSE_REPLY] = array(); + $optvals[SMOPT_GRP_COMPOSE_REPLY][] = array( + 'name' => 'do_not_reply_to_self', + 'caption' => _("Send Replies To My Own Messages To Previous Recipient"), + 'type' => SMOPT_TYPE_BOOLEAN, + 'refresh' => SMOPT_REFRESH_NONE + ); + $optvals[SMOPT_GRP_COMPOSE_REPLY][] = array( 'name' => 'include_self_reply_all', 'caption' => _("Include Me in CC when I Reply All"), @@ -125,6 +132,13 @@ function load_optpage_data_compose() { 'refresh' => SMOPT_REFRESH_NONE ); + $optvals[SMOPT_GRP_COMPOSE_REPLY][] = array( + 'name' => 'return_to_message_after_reply', + 'caption' => _("Return to Original Message After Replying"), + 'type' => SMOPT_TYPE_BOOLEAN, + 'refresh' => SMOPT_REFRESH_NONE + ); + $optvals[SMOPT_GRP_COMPOSE_REPLY][] = array( 'name' => 'sig_first', 'caption' => _("Prepend Signature before Reply/Forward Text"),