Add an option for showing recipient name instead of default identity. (Default: false...
[squirrelmail.git] / include / load_prefs.php
index 6e9fb3000b0bd7403ec47b7c54c061cdcbf9df53..61d6dfe51403cdeb9f01a2bda98343ccfb48df9e 100644 (file)
@@ -273,6 +273,8 @@ $show_full_date = getPref($data_dir, $username, 'show_full_date', 0);
 $truncate_sender = getPref($data_dir, $username, 'truncate_sender', 0);
 /* Allow user to customize length of subject field */
 $truncate_subject = getPref($data_dir, $username, 'truncate_subject', 50);
+/* Allow user to show recipient name if the message is from default identity */
+$show_recipient_instead = getPref($data_dir, $username, 'show_recipient_instead', 0);
 
 do_hook('loading_prefs');