/etc/squirrelmail/sent-confirmation-config.php is in squirrelmail-sent-confirmation 1.6-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110  | <?php
/**
  * SquirrelMail Sent Confirmation Plugin
  * Copyright (C) 2004 Paul Lesneiwski <pdontthink@angrynerds.com>
  * This program is licensed under GPL. See COPYING for details
  *
  */
   global $sent_conf_message_style, $sent_conf_include_recip_addr,
          $sent_conf_show_only_first_recip_addr, $sent_conf_allow_user_override,
          $emailAddressDelimiter, $sent_logo, $sent_logo_width, $sent_logo_height,
          $sent_conf_show_headers, $sent_conf_enable_orig_msg_options;
   // setting this to 1 gives the user the ability to change 
   // any of the settings below for their own account
   //
   $sent_conf_allow_user_override = 1;
   // message confirmation style:
   //
   //   'off' :    No message shown
   //       1 :    "Message Sent" (above mailbox listing)
   //       2 :    "Your message has been sent"  (centered) 
   //              (above mailbox listing)
   //       3 :    Allow user to add addresses to address
   //              book (with optional image) (separate, 
   //              intermediary screen)
   //       4 :    "Message Sent To:"  (with user list and
   //              optional image) (separate, intermediary screen)
   //
   $sent_conf_message_style = 'off';
   //$sent_conf_message_style = 3;
   // this allows you to indicate the email address to which
   // the message was sent in the confirmation message (0 = off,
   // 1 = on)
   //
   $sent_conf_include_recip_addr = 1;
   // when using the "$sent_conf_include_recip_addr" setting
   // above, this setting will determine if all of the "To:"
   // addresses will be shown or not (0 = off, 1 = on)
   //
   $sent_conf_show_only_first_recip_addr = 1;
   // when using the "$sent_conf_include_recip_addr" setting
   // above, this setting will also include any addresses in
   // the "Cc:" field (0 = off, 1 = on)
   //
   $sent_conf_include_cc = 0;
   // when using the "$sent_conf_include_recip_addr" setting
   // above, this setting will also include any addresses in
   // the "Bcc:" field (0 = off, 1 = on)
   //
   $sent_conf_include_bcc = 0;
   // this allows you to place a logo above the confirmation
   // message when the confirmation style is 3 or 4.  No logo
   // will be shown if $sent_logo is empty/blank.  Width
   // and height values are optional
   //
   $sent_logo = '';
   //$sent_logo = '../images/sm_logo.png';
   $sent_logo_width = '';
   $sent_logo_height = '';
   // set this to 1 in order to include "To:", "Cc:", and "Bcc:"
   // in the list of recipients (so you know which address was 
   // in which header field)
   //
   $sent_conf_show_headers = 0;
   // this allows users to delete, move, or return to the 
   // original message after sending a reply
   //
   $sent_conf_enable_orig_msg_options = 1;
   // the delimiter between account name and domain used in
   // email addresses on your system... it is rarely anything
   // except '@'
   //
   $emailAddressDelimiter = '@';
?>
 |